python GeoIP 사용

홈 페이지 주소:http://dev.maxmind.com/geoip/geoip2/geolite2/#Databases
ubuntu 아래 설치 가 간단 합 니 다:
1.geoip 의 py 라 이브 러 리 설치
sudo pip install pygeoip

다운로드 GeoLiteCity.dat
사용:
import pygeoip

gi = pygeoip.GeoIP('GeoLiteCity.dat', pygeoip.MEMORY_CACHE)
 
location = gi.record_by_addr(8.8.8.8)
print location
>>> {'city': '', 'region_name': '', 'area_code': 0, 'time_zone': '', 'dma_code': 0, 'metro_code': None, 'country_code3': 'USA', 'latitude': 38.0, 'postal_code': '', 'longitude': -97.0, 'country_code': 'US', 'country_name': 'United States', 'continent': 'NA'}

주의 영역,geoip 은 자신의 code 를 사용 하여 표시 합 니 다.홈 페이지 에서 하 나 를 제공 합 니 다.
  CSV file which maps our region codes to region names

ISO country code,region code(FIPS or ISO),and the region name,즉 앞의 두 열 을 종합 적 으로 대응 하 는 지역 이름 입 니 다.
이렇게 하면'%s%'를 사용 할 수 있 습 니 다.s' % (country_code, region_code)키 를 만들어 csv 에 따라 사전 을 만들어 간단하게 대응 합 니 다.

좋은 웹페이지 즐겨찾기