gpt4 book ai didi

python - 使用 urllib 请求更改或创建超时

转载 作者:行者123 更新时间:2023-12-01 01:46:55 25 4
gpt4 key购买 nike

我有这段代码,我想知道是否有任何方法可以添加超时延迟:

req = Request(url, headers={'User-Agent': 'Mozilla/5.0'})
WD = urlopen(req).read()

最佳答案

urlopen()函数内置了一个超时方法:

urllib.request.urlopen(url, data=None, [timeout, ]*, cafile=None, capath=None, cadefault=False, context=None)

The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). This actually only works for HTTP, HTTPS and FTP connections.

所以在你的代码中:

time = 50
WD = urlopen(req, timeout=time).read()
<小时/>

您只能使用上述参数更改您方(即客户端)的请求。服务器端也可能会发送超时,但无法改变这一点。

关于python - 使用 urllib 请求更改或创建超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51227425/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com