使用开源库 geoip2 获取某ip的经纬度地理信息
有个场景, 需要展示ip的经纬度 和所属省市
使用开源的地理库 geoip2 ,需要去官网下载一个GeoLite2-City.mmdb包, 差不多50M左右
先安装扩展 pip install geoip2
示例代码
import geoip2.database
# 指定你的 GeoLite2 数据库文件路径
def test(ip):
database_path = '/GeoLite2-City.mmdb'
# 创建一个 Reader 实例
reader = geoip2.database.Reader(database_path)
# 查询一个 IP 地址
try:
response = reader.city(ip) # 使用 Google 的公共 DNS 服务器 IP 地址作为示例
# 获取经度和纬度
latitude = response.location.latitude
longitude = response.location.longitude
city_name = response.city.names.get('zh-CN', None)
province_name = response.subdivisions.most_specific.names.get('zh-CN', None)
print(f"IP 地址 {ip} 的经纬度为: 经度 {longitude}, 纬度 {latitude}")
except geoip2.errors.AddressNotFoundError:
print("未能找到指定 IP 地址的信息")
# 关闭 Reader
reader.close()
for i in ["218.93.5.2", "59.37.89.108", '218.93.5.42']:
test(i)