Python urllib2.open Connection reset by peer error(Python urllib2.open 连接由对等错误重置)
问题描述
我正在尝试使用 python 抓取页面
I'm trying to scrape a page using python
问题是,我不断收到对等方重置 Errno54 连接.
The problem is, I keep getting Errno54 Connection reset by peer.
运行此代码时出现错误 -
The error comes when I run this code -
urllib2.urlopen("http://www.bkstr.com/webapp/wcs/stores/servlet/CourseMaterialsResultsView?catalogId=10001&categoryId=9604&storeId=10161&langId=-1&programId=562&termId=100020629&divisionDisplayName=Stanford&departmentDisplayName=ILAC&courseDisplayName=126§ionDisplayName=01&demoKey=d&purpose=browse")
此页面上的所有网址都会发生这种情况 - 有什么问题?
this happens for all the urls on this pag- what is the issue?
推荐答案
$> telnet www.bkstr.com 80
Trying 64.37.224.85...
Connected to www.bkstr.com.
Escape character is '^]'.
GET /webapp/wcs/stores/servlet/CourseMaterialsResultsView?catalogId=10001&categoryId=9604&storeId=10161&langId=-1&programId=562&termId=100020629&divisionDisplayName=Stanford&departmentDisplayName=ILAC&courseDisplayName=126§ionDisplayName=01&demoKey=d&purpose=browse HTTP/1.0
Connection closed by foreign host.
从 python 或其他任何地方获取该 URL 不会有任何乐趣.如果它在您的浏览器中工作,那么肯定有其他事情发生,例如 cookie 或身份验证等.或者,可能是服务器坏了,或者他们改变了配置.
You're not going to have any joy fetching that URL from python, or anywhere else. If it works in your browser then there must be something else going on, like cookies or authentication or some such. Or, possibly, the server's broken or they've changed their configuration.
尝试在您以前从未访问过该网站的浏览器中打开它以进行检查.然后登录并重试.
Try opening it in a browser that you've never accessed that site in before to check. Then log in and try it again.
毕竟是 cookie:
It was cookies after all:
import cookielib, urllib2
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
#Need to set a cookie
opener.open("http://www.bkstr.com/")
#Now open the page we want
data = opener.open("http://www.bkstr.com/webapp/wcs/stores/servlet/CourseMaterialsResultsView?catalogId=10001&categoryId=9604&storeId=10161&langId=-1&programId=562&termId=100020629&divisionDisplayName=Stanford&departmentDisplayName=ILAC&courseDisplayName=126§ionDisplayName=01&demoKey=d&purpose=browse").read()
输出看起来不错,但您必须检查它是否符合您的要求:)
The output looks ok, but you'll have to check that it does what you want :)
这篇关于Python urllib2.open 连接由对等错误重置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python urllib2.open 连接由对等错误重置


基础教程推荐
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 包装空间模型 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01