📜  python requests.get timeout - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:33.975000             🧑  作者: Mango

代码示例1
# Here is how to set a time out for requests.get in python
# its simple!
import requests

link = 'https://google.com' 
request_from_link = requests.get(link, timeout=10) 
# this causes the code to call a timeout if the connection or delays in 
# between the reads take more than 10 seconds
print(request_from_link)