首页 > 其他分享 >获取ip地址归属地

获取ip地址归属地

时间:2022-10-19 11:31:44浏览次数:45  
标签:get ip 归属 地址 json location address response

免费版,每个月限制只能获取30000

import requests


def get_ip():
response = requests.get('https://api64.ipify.org?format=json').json()
return response["ip"]


def get_location():
ip_address = get_ip()

response = requests.get('https://ipapi.co/{}/json/'.format(ip_address)).json()
location_data = {
"ip": ip_address,
"city": response.get("city"),
"region": response.get("region"),
"country": response.get("country_name")
}
return location_data


print(get_location())

标签:get,ip,归属,地址,json,location,address,response
From: https://blog.51cto.com/u_14624377/5769175

相关文章