标签: python file download limit rate
可能重复: Throttling with urllib2
如何下载文件并限制费率?
我正在寻找与wget --limit-rate类似的功能,目前,我正在使用urlretrieve。
wget --limit-rate
urlretrieve
import urllib urllib.urlretrieve("http://example.com/somebigfile.zip", "bigfile.zip") # how to limit-rate?