版权声明:本文为博主徐松亮的原创作品,未经允许不得转载,多谢支持! *** :5387603
推荐点击此链接:欢迎进入徐松亮博客一站式导航搜索(随时更新)
目录
一,概念
场景
场景解决
具体方案
数据到哪去查呢?
本文用什么变成语言?
本文用GeoLiteCity的在线查询还是离线查询?
离线数据源的定期更新
二,准备工作
python环境
安装MaxMind公司的开源数据库GeoLiteCity:
三,代码讲解
四,源码
五,运行效果
六,调试记录
pip install geoip2
等待安装完成
下载数据包
下载网址:https://dev.maxmind.com/zh-hans/geoip/geoip2/geolite2/
#!D:/Program Files/Python37/python import geoip2.database # This creates a Reader object. You should use the same object # across multiple requests as creation of it is expensive. reader = geoip2.database.Reader( '../../../xsl_use_lib/geolite2/GeoLite2-City/GeoLite2-City.mmdb') def ip_print_AddrInfo(ip): # Replace "city" with pthe method corresponding to the database # that you are using, e.g., "country". #----------------------------------------------- # 载入指定IP相关数据 response = reader.city(ip) #读取国家代码 Country_IsoCode = response.country.iso_code #读取国家名称 Country_Name = response.country.name #读取国家名称(中文显示) Country_NameCN = response.country.names['zh-CN'] #读取州(国外)/省(国内)名称 Country_SpecificName = response.subdivisions.most_specific.name #读取州(国外)/省(国内)代码 Country_SpecificIsoCode = response.subdivisions.most_specific.iso_code #读取城市名称 City_Name = response.city.name #读取邮政编码 City_PostalCode = response.postal.code #获取纬度 Location_Latitude = response.location.latitude #获取经度 Location_Longitude = response.location.longitude #------------------------------------------------打印 print('[*] Target: ' + ip + ' GeoLite2-Located ') print(' [+] Country_IsoCode : ' + Country_IsoCode) print(' [+] Country_Name : ' + Country_Name) print(' [+] Country_NameCN : ' + Country_NameCN) print(' [+] Country_SpecificName : ' + Country_SpecificName) print(' [+] Country_SpecificIsoCode: ' + Country_SpecificIsoCode) print(' [+] City_Name : ' + City_Name) if City_PostalCode != None: print(' [+] City_PostalCode : ' + City_PostalCode) print(' [+] Location_Latitude : ' + str(Location_Latitude)) print(' [+] Location_Longitude : ' + str(Location_Longitude)) ip = '119.108.116.209' ip_print_AddrInfo(ip)
二十四小时接单子的网络黑客在宣布开展各种各样“网络黑客个人行为”以前,网络黑客会采用各种各样方式,检测(还可以说“侦查”)...
2020,“困难模式”开场。一场突如其来的特殊疫情,令“线上服务”得到了前所未有的关注和热度,以线下机构辅助学校教学这一传统受教育模式亦受到猛烈冲击。从线下至线上,从消费普及到全民热捧,根据中研产业研...
优化的购物车、开箱即用的商品销售工具、更多的灵活性和支持以及联盟销售(Affiliate program),都为这一改进做出了贡献 佐治亚州亚特兰大市——2020年11月16日:全球领先的多合一...
小编教你如何追踪别人的IP地址 (一)使用QQ显示IP的补丁程序 显IP补丁程序是由编程喜好者自发编写的,程序晋级速度几乎与QQ原版同步,腾讯公司每发布一个QQ新版本,显IP补丁程序也会很快问世。 Q...
据说,专业人士都用AI设计logo图标。 而我就比较厉害了,我用AI生成logo图标(人工智能)。哈哈 你们看到的“小威LOGO设计机器人”公众号头像图标,就是用人工智能AI生成的。 说的这么高...
2月15日大年初四,电影《大红包》在优酷独家上线,进一步丰富了优酷电影对于“网络电影春节档”的内容排播。加上大年初一在优酷首播的《少林寺之得宝传奇》、《发财日记》,以及多部独播喜剧,优酷和阿里文娱电影...