Hacker News new | ask | show | jobs
by jogu 1658 days ago
No, this requests: https://github.com/psf/requests
1 comments

... why would I use that when I could use https://docs.python.org/3/library/urllib.request.html ?
Requests generally provides a simpler interface and absorbs some of the complexities if you were trying to use the stdlib directly e.g. pooling, redirects, retries, proxies, etc. It also smooths over some of the differences in the stdlib across Python versions, though that's less of an issue as of late as older versions are being deprecated.