Python请求超时 - requests.exceptions.ConnectionError :('连接中止。',错误(10060,

时间:2015-10-07 01:38:37

标签: python web-scraping python-requests

我遇到了Python请求问题。运行Python 2.7。

这是我的代码

import requests
URL = 'http://www.chiefscientist.gov.au/category/archives/media-releases/'
urlHeaders = {"User-Agent": "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 GTB7.1 (.NET CLR 3.5.30729)", "Referer": "http://example.com"}
r = requests.get(URL, headers=urlHeaders, timeout=None)

我使用超时=无,因此服务器可以按照自己喜欢的时间使用。

我收到此错误 -

requests.exceptions.ConnectionError: ('Connection aborted.', error(10060, ...

这不是this question的重复,我确定。

我已尝试过http和https,服务器返回“未找到”#39;当我请求https。当我使用http时,脚本需要10秒或更长时间,然后返回错误。

有什么想法吗?

0 个答案:

没有答案