作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经成功使用 python 和 urllib2 模块检索常规网页中的 html 代码。
但是当我尝试将它与带有冒号的网页一起使用时,它不起作用。此代码:
f = urllib2.urlopen("http://http://gulasidorna.eniro.se/hitta:svenska+kyrkan/")
htmlcode = f.read()
print htmlcode
以下代码生成此错误消息。
File "/Users/jonathan/Documents/Dropbox/Python/eniro.py", line 137, in <module>
f = urllib2.urlopen("http://http://gulasidorna.eniro.se/hitta:svenska+kyrkan/")
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 126, in urlopen
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 394, in open
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 412, in _open
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 372, in _call_chain
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1199, in http_open
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1140, in do_open
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 693, in _init_
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 718, in _set_hostport
httplib.InvalidURL: nonnumeric port: ''
最佳答案
这应该可行,网址开头有一个额外的 http://:
f = urllib2.urlopen("http://gulasidorna.eniro.se/hitta:svenska+kyrkan/")
htmlcode = f.read()
print htmlcode
关于python - 如何从 url 中带有冒号 ":"的 url 获取 htmlcode?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12704526/
渲染window.navigate(strURL);时存在性能时间延迟。在那之前,我想使用 mainContainer.innerHTML = HTMLwait; 显示等待消息,但它不起作用。任何帮助
我已经成功使用 python 和 urllib2 模块检索常规网页中的 html 代码。 但是当我尝试将它与带有冒号的网页一起使用时,它不起作用。此代码: f = urllib2.urlopen("h
我是一名优秀的程序员,十分优秀!