python 获取网页代码url为啥不能为ip?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 获取网页代码url为啥不能为ip?相关的知识,希望对你有一定的参考价值。
、、、、
、、、。
url="http://220.181.111.86" #百度ip
page=urllib.urlopen(url)
html=page.read()
print html
出错!
Traceback (most recent call last): File "C:\Users\su\Desktop\新建文件夹\my-pachong.py", line 33, in <module> html2=gethtml("http://220.181.111.86") File "C:\Users\su\Desktop\新建文件夹\my-pachong.py", line 6, in gethtml page=urllib.urlopen(url) File "C:\Python27\lib\urllib.py", line 87, in urlopen return opener.open(url) File "C:\Python27\lib\urllib.py", line 208, in open return getattr(self, name)(url) File "C:\Python27\lib\urllib.py", line 352, in open_http 'got a bad status line', None)IOError: ('http protocol error', 0, 'got a bad status line', None)>>>
url = 'http://220.181.111.86/'
这样试试
python requests库爬取网页小实例:ip地址查询
ip地址查询的全代码:
智力使用ip183网站进行ip地址归属地的查询,我们在查询的过程是通过构造url进行查询的,将要查询的ip地址以参数的形式添加在ip183url后面即可。
#ip地址查询的全代码 import requests url="http://m.ip138.com/ip.asp?ip=" try: r=requests.get(url+‘202.204.80.112‘) r.raise_for_status() r.encoding=r.apparent_encoding print(r.text(-500:)) except: print("爬取失败")
以上是关于python 获取网页代码url为啥不能为ip?的主要内容,如果未能解决你的问题,请参考以下文章