获取你的
自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
import requests url = 'https://w3schools.com/python/demopage.php' myobj = {'somekey': 'somevalue'} #to demonstrate the 'timeout' parameter, we set the timeout to 0.001 to guarantee that the connection will be timed out: x = requests.post(url, data = myobj, timeout=0.001) print(x.text)
连接到 w3schools.com 超时。 (connect timeout=0.001)