python 利用淘宝IP库 查询IP归属地

Posted 繁华博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 利用淘宝IP库 查询IP归属地相关的知识,希望对你有一定的参考价值。

#coding:utf-8
from django.test import TestCase

import json
import urllib

ip = "114.114.114.114"
url = "http://ip.taobao.com/service/getIpInfo.php?ip="+ ip

#返回数据
jsondata = json.loads(urllib.urlopen(url).read())
print jsondata

#省份
region = jsondata["data"]["region"]
#城市
city = jsondata["data"]["city"]
#运营商
isp = jsondata["data"]["isp"]
#国家
country = jsondata["data"]["country"]

print region
print city
print isp
print country

 结果:

{u‘code‘: 0, u‘data‘: {u‘city‘: u‘\u5357\u4eac‘, u‘area_id‘: u‘‘, u‘county_id‘: u‘xx‘, u‘region_id‘: u‘320000‘, u‘area‘: u‘‘, u‘city_id‘: u‘320100‘, u‘ip‘: u‘114.114.114.114‘, u‘region‘: u‘\u6c5f\u82cf‘, u‘isp‘: u‘XX‘, u‘country_id‘: u‘CN‘, u‘county‘: u‘XX‘, u‘isp_id‘: u‘xx‘, u‘country‘: u‘\u4e2d\u56fd‘}}
江苏
南京
XX
中国

 





以上是关于python 利用淘宝IP库 查询IP归属地的主要内容,如果未能解决你的问题,请参考以下文章

python爬取免费优质IP归属地查询接口

python 利用cip.cc查询IP归属地

利用淘宝IP库分析web日志来源分布

python +ip2region IP库地址文件实现秒级查询1万不同ip归属地址

如何利用 IP 归属地查询 API 精准锁定用户位置

php用IP查询归属地