1. 首页
  2. 编程语言
  3. Python
  4. GeoLiteCity.dat

GeoLiteCity.dat

上传者: 2019-09-23 09:17:41上传 DAT文件 16.95MB 热度 15次
Python查询IP地址所属的国家和城市的库。使用的时候需要先pipinstallgeoip。importpygeoipclassGeoIP(object):def__init__(self,db="GeoLiteCity.dat"):self.gi=pygeoip.GeoIP(db,pygeoip.MEMORY_CACHE)defregion(self,ip):res={}info=self.gi.record_by_addr(ip)ifnotinfo:returnres
用户评论