IP归属地查询接口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IP归属地查询接口相关的知识,希望对你有一定的参考价值。
参考技术A http://ip-api.com/json/返回接口:
http://pv.sohu.com/cityjson
返回接口:
http://whois.pconline.com.cn/ipJson.jsp?ip=xxx.xxx.xxx.xxx&json=true
返回接口:
Python利用api接口查询IP地址归属地
import requests import argparse import json def get_parameter(): parser=argparse.ArgumentParser(description=‘该脚本用于查看IP的归属地‘) parser.add_argument(‘-a‘,dest=‘ipaddr‘,type=str,default=‘‘,help=‘输入查询IP‘) args=parser.parse_args() ipaddr=args.ipaddr return ipaddr def get_json(ipaddr): url=‘http://ip-api.com/json/{}?lang=zh-CN‘.format(ipaddr) headers={ ‘User-Agent‘:‘Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0‘, ‘Connection‘:‘keep-alive‘ } r=requests.get(url,timeout=15,headers=headers) r.close() result=r.content.decode() return result def main(): ipaddr=get_parameter() ip_str=get_json(ipaddr) ip_json=json.loads(ip_str) ip_country=ip_json[‘country‘] ip_city=ip_json[‘city‘] ip_query=ip_json[‘query‘] print(‘查询的IP:{} 归属地为:{} {}‘.format(ip_query,ip_country,ip_city)) if __name__==‘__main__‘: main()
以上是关于IP归属地查询接口的主要内容,如果未能解决你的问题,请参考以下文章