我正在尝试从网站 http://statsheet.com/下载页面
像这样
url = 'http://statsheet.com'
urllib2.urlopen(url)
我尝试过使用 Python 模块 urllib、urllib2 和“reqests”,但我只收到诸如“状态行错误”、“BadStatusLine”或类似的错误消息
有没有办法解决这个问题?
我正在尝试从网站 http://statsheet.com/下载页面
像这样
url = 'http://statsheet.com'
urllib2.urlopen(url)
我尝试过使用 Python 模块 urllib、urllib2 和“reqests”,但我只收到诸如“状态行错误”、“BadStatusLine”或类似的错误消息
有没有办法解决这个问题?
您需要指定一个通用的浏览器用户代理,例如
wget -U "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.34 Safari/537.36" http://statsheet.com
相关问题/答案: