无接口用python查询IP的归属地
时间: 2024-04-04 20:34:32 浏览: 92
你可以通过爬取一些免费的IP地址库来查询IP的归属地,这里以淘宝IP地址库为例,代码如下:
```python
import requests
def query_ip_location(ip):
url = 'http://ip.taobao.com/service/getIpInfo.php?ip={}'.format(ip)
r = requests.get(url)
json_data = r.json()
if json_data['code'] == 0:
data = json_data['data']
return '{} {} {}'.format(data['country'], data['region'], data['city'])
else:
return json_data['msg']
ip = '8.8.8.8'
location = query_ip_location(ip)
print('{} 的归属地是:{}'.format(ip, location))
```
这里定义了一个`query_ip_location`函数,接收一个IP地址作为参数,然后通过爬取淘宝IP地址库的API获取IP的归属地信息。如果查询成功,返回归属地信息,否则返回错误信息。你只需要调用这个函数并传入要查询的IP地址即可。
相关问题
python 查询ip归属地 ip138
好的,您可以使用 Python 的 requests 库向 ip138 发送 HTTP GET 请求,然后解析返回的 HTML 页面来获取 IP 地址的归属地信息。以下是一个示例代码:
```python
import requests
from bs4 import BeautifulSoup
ip_address = "202.204.80.112"
url = "http://www.ip138.com/ips138.asp?ip=" + ip_address
response = requests.get(url)
response.encoding = "gb2312"
soup = BeautifulSoup(response.text, "html.parser")
table = soup.find_all("table")[2]
trs = table.find_all("tr")
tds = trs[2].find_all("td")
location = tds[1].text.strip()
print("IP地址:", ip_address)
print("归属地:", location)
```
请注意,这种方法可能不是很可靠,因为它依赖于网站的 HTML 页面结构,而这个结构可能会随着时间的推移而发生变化。如果您需要更可靠的方法,请考虑使用专业的 IP 地址归属地查询 API。
python批量查询ip归属地
你可以使用Python的第三方库requests和re来实现批量查询IP归属地。具体步骤如下:
1. 准备IP列表,将IP逐行写入一个文本文件中,比如ip_list.txt。
2. 使用requests库向IP查询接口发送请求,并获取响应结果。
3. 使用re库对响应结果进行正则表达式匹配,提取出IP归属地信息。
4. 将提取出的IP归属地信息保存到一个文本文件中,比如result.txt。
下面是一个示例代码,你可以根据自己的需求进行修改:
```python
import re
import requests
# 读取IP列表
with open('ip_list.txt', 'r') as f:
ip_list = f.read().splitlines()
# 查询IP归属地
for ip in ip_list:
url = 'http://ip.taobao.com/service/getIpInfo.php?ip=' + ip
r = requests.get(url)
result = re.findall(r'"city":"(.*?)",', r.text)
if result:
city = result[0]
print(ip, city)
with open('result.txt', 'a') as f:
f.write(ip + ' ' + city + '\n')
```
这个示例代码使用了淘宝IP查询接口,你也可以选择其他的IP查询接口,如新浪IP查询接口。
阅读全文