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