码迷,mamicode.com
首页 > 编程语言 > 详细

python绝技 — 使用PyGeoIP关联IP地址和物理位置

时间:2016-12-11 12:15:42      阅读:472      评论:0      收藏:0      [点我收藏+]

标签:物理   size   count   add   highlight   开源   legacy   包含   style   

准备工作

要关联IP与物理位置,我们需要有一个包含这样对应关系的数据库。

我们可以使用开源数据库GeoLiteCity,它能够较为准确地把IP地址与所在城市关联起来

下载地址:http://dev.maxmind.com/geoip/legacy/geolite/

技术分享

下载之后我们解压:xz -d GeoLiteCity.dat.xz,如:/My/lib/ip/GeoLiteCity.dat

技术分享

 

安装pygeoip库。这个库用于对GeoLiteCity数据库的查询 

技术分享

 

代码:

 

#!/usr/bin/python
#--*--coding=utf-8--*--

import pygeoip

gi = pygeoip.GeoIP(‘/My/lib/ip/GeoLiteCity.dat‘)

def printRecord(tgt):
	rec = gi.record_by_addr(tgt)
	city = rec[‘city‘]
	region = rec[‘region_code‘]
	country = rec[‘country_name‘]
	long = rec[‘longitude‘]
	lat = rec[‘latitude‘]
	print ‘[*] 主机: ‘ + tgt + ‘ Geo-located.‘
	print ‘[+] ‘ + str(city) + ‘, ‘ +str(region)+‘, ‘+str(country)
	print ‘[+] 经度: ‘+str(lat)+‘, 维度: ‘+ str(long)

tgt = ‘183.141.110.74‘
printRecord(tgt)

183.141.110.74是随便找的一个代理ip地址,查查看地址:

技术分享

查询结果

技术分享

 

python绝技 — 使用PyGeoIP关联IP地址和物理位置

标签:物理   size   count   add   highlight   开源   legacy   包含   style   

原文地址:http://www.cnblogs.com/ssooking/p/6097436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!