What python libraries can tell me approximate location and time zone given an IP address?

后端 未结 13 721
借酒劲吻你
借酒劲吻你 2020-11-28 03:31

Looking to implement better geo-location with Python.

13条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 04:25

    IP API is also very nice way to do it.

    import urllib
    
    ip= '12.24.36.48'
    
    url = 'http://ip-api.com/json/' + ip
    
    req = urllib.request.Request(url)
    
    out = urllib.request.urlopen(req).read()
    

    enter image description here

提交回复
热议问题