温馨提示×

python curl命令怎样设置超时

小樊
81
2024-11-28 23:33:22
栏目: 编程语言

在Python中,您可以使用requests库来实现类似于cURL的命令来发送HTTP请求并设置超时

pip install requests

然后,您可以使用以下代码示例来发送一个GET请求并设置超时:

import requests

url = "https://example.com"
timeout = 5  # 设置超时时间为5秒

try:
    response = requests.get(url, timeout=timeout)
    print(response.text)
except requests.exceptions.Timeout:
    print("请求超时")
except requests.exceptions.RequestException as e:
    print(f"请求发生错误: {e}")

在这个例子中,我们设置了一个5秒的超时时间。如果请求在5秒内没有完成,将会引发一个requests.exceptions.Timeout异常。如果发生其他请求错误,将会引发一个requests.exceptions.RequestException异常。

0