我正在收集网站列表上的统计数据,为了简单起见,我正在使用请求。这是我的代码:
data=[]
websites=['http://google.com', 'http://bbc.co.uk']
for w in websites:
r= requests.get(w, verify=False)
data.append( (r.url, len(r.content), r.elapsed.total_seconds(), str([(l.status_code, l.url) for l in r.history]), str(r.headers.items()), str(r.cookies.items())) )
现在,我想requests.get
在10秒后超时,这样循环就不会卡住。
使用事件怎么样?如果您想在10秒后超时请求,即使接收到数据,此片段也适用于您:
import requests
import eventlet
eventlet.monkey_patch()
with eventlet.Timeout(10):
requests.get("http://ipv4.download.thinkbroadband.com/1GB.zip", verify=False)
设置超时参数:
r = requests.get(w, verify=False, timeout=10)
只要你不设定stream=True
在该请求下,这将导致调用requests.get()
如果连接超过10秒,或者服务器发送数据时间不超过10秒,则超时。