使用python在Web请求中定义超时

问题描述 投票:2回答:1

这是我的情景。我正在向网页发出请求,在某些情况下需要太长时间。我希望当没有从服务器发出响应需要超过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)

出于保密原因,我没有把真正的网址放在一边,但通常没有设置超时,它可以正常工作

python exception python-requests timeout connection-timeout
1个回答
4
投票

使用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")
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.