You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was curious with all of the heavy usage of Requests module, why isn't it just included as a standard python module? Why does the user have to install it?
What does python expect the user to use instead?
The text was updated successfully, but these errors were encountered:
While you can use that instead of requests, many prefer requests interfaces to urllib.
Kenneth's original reasoning for this is "The stdlib is where things go to die". However, he did propose adding it to the stdlib here
Ok. I understand more completely now. And it does make sense now. I didn't realize there was so much politics in getting a module included in the stdlib and the potential loss of control over updates/features.
I was curious with all of the heavy usage of
Requests
module, why isn't it just included as a standard python module? Why does the user have to install it?What does python expect the user to use instead?
The text was updated successfully, but these errors were encountered: