爬虫程序连接超时问题

报错:

 Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。

解决办法:

requests.get可以设置超时参数:requests.get(url,timeout=500)

你可能感兴趣的:(爬虫程序连接超时问题)