Is it possible to limit the download rate of GET requests using the requests
Python library? For instance, with a command like this:
r = requests.get('https://stackoverflow.com/')
...is it possible to limit the download rate? I'm hoping for something similar to this wget
command:
wget --limit-rate=20k https://stackoverflow.com/
I know it's possible with urllib2
. I'm asking specifically about the requests
library.
requests
library, this doesn't really answer the question... except that you are suggesting he re-write deep portions ofrequests
to do what he wants. – Sagerman