这是我的情景。我正在向网页发出请求,在某些情况下需要太长时间。我希望当没有从服务器发出响应需要超过10秒时,请求被取消但没有收到任何错误。这是我当前的代码和我看到的错误。出现此错误时,我的代码结束。总之,我想发出一个Web请求,并限制如果在10秒内没有答案,我完成请求并继续我的代码。
requests.post("www.webpage.com", headers = {'Content-type': 'application/x-www-form-urlencoded'}, data = {"conid":1,"event":5},timeout=10)
.
.
.
10秒后,我收到此错误
ReadTimeout: HTTPConnectionPool(host='www.webpage.com', port=80): Read timed out. (read timeout=10)
出于保密原因,我没有把真正的网址放在一边,但通常没有设置超时,它可以正常工作
使用exception
来处理超时
try:
requests.post("www.webpage.com", headers = {'Content-type': 'application/x-www-form-urlencoded'}, data = {"conid":1,"event":5},timeout=10)
except requests.exceptions.ReadTimeout:
print("Server didn't respond within 10 seconds")