当前位置:  开发笔记 > 编程语言 > 正文

什么python库可以告诉我给定IP地址的大致位置和时区?

如何解决《什么python库可以告诉我给定IP地址的大致位置和时区?》经验,为你挑选了5个好方法。

希望用Python实现更好的地理位置.



1> doug..:

Hostip.info是一个开源项目,其目标是构建/维护将IP地址映射到城市的数据库.他们的 about页面解释了依赖于填充此数据库的数据源.

使用HostIP,有两种方法可以从IP地址获取位置数据:

它们还有一个设计良好且易于使用的RESTFUL API:只需在GET请求字符串中的i***p =***之后传入您的IP地址):

import urllib

response = urllib.urlopen('http://api.hostip.info/get_html.php?ip=12.215.42.19&position=true').read()

print(response)

其次,项目网站还可以下载完整的数据库.


我只是尝试了三个有效的IP地址,但它不知道它们中的任何一个(甚至是映射到something.wanadoo.fr的那个).
这个api返回错误的位置.:(
Arr ... Url失败了:(
此服务不再存在

2> luc..:

它不是Python库.但是http://ipinfodb.com/提供了一个web服务,可以通过urllib轻松地用Python代码包装.

http://api.ipinfodb.com/v3/ip-city/?key=&ip=74.125.45.100
http://api.ipinfodb.com/v3/ip-country/?key=&ip=74.125.45.100

您需要申请免费的API密钥.有关详细信息,请参阅API文档.



3> ony..:

您可能会发现这些模块很有用:MaxMind的GeoIP及其纯版本以及pytz.



4> Jason Parham..:

我在另一个被埋没的问题中发布了这个问题,但链接在这里:

#!/usr/bin/env python 
from urllib2 import urlopen
from contextlib import closing
import json

# Automatically geolocate the connecting IP
url = 'http://freegeoip.net/json/'
try:
    with closing(urlopen(url)) as response:
        location = json.loads(response.read())
        print(location)
        location_city = location['city']
        location_state = location['region_name']
        location_country = location['country_name']
        location_zip = location['zipcode']
except:
    print("Location could not be determined automatically")

将HTTP GET请求发送到:freegeoip.net/{format}/ {ip_or_hostname}以接收Python可以解析的JSON输出.

我得到以下JSON密钥,这应该足以满足您的需求:

IP

国家代码

国家的名字

REGION_CODE

REGION_NAME

邮政编码

纬度

经度

METRO_CODE

区号


不要使用裸``除`.它甚至可以捕获KeyboardInterrupt

5> berto..:

找到https://freegeoip.net/ ; 下面的python示例.

import requests

FREEGEOPIP_URL = 'http://freegeoip.net/json/'

SAMPLE_RESPONSE = """{
    "ip":"108.46.131.77",
    "country_code":"US",
    "country_name":"United States",
    "region_code":"NY",
    "region_name":"New York",
    "city":"Brooklyn",
    "zip_code":"11249",
    "time_zone":"America/New_York",
    "latitude":40.645,
    "longitude":-73.945,
    "metro_code":501
}"""


def get_geolocation_for_ip(ip):
    url = '{}/{}'.format(FREEGEOPIP_URL, ip)

    response = requests.get(url)
    response.raise_for_status()

    return response.json()

推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有