📜  python 从 IP 获取城市名称 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:16.078000             🧑  作者: Mango

代码示例1
import re
import json
from urllib2 import urlopen

url = 'http://ipinfo.io/json'
response = urlopen(url)
data = json.load(response)

IP=data['ip']
org=data['org']
city = data['city']
country=data['country']
region=data['region']

print 'Your IP detail\n '
print 'IP : {4} \nRegion : {1} \nCountry : {2} \nCity : {3} \nOrg : {0}'.format(org,region,country,city,IP)