title |
---|
058《IP-Address》快速查看当前设备IP |
如何快速查看自己设备真实的IP地址, 并获得ip所在的国家或地区? 这款名为《IP-Address》的Chrome扩展可以帮到你~
IP-Address的使用方法非常简单,而且可以实时检测网络IP的变化,并显示IP所在的国家或地区
- 上图超清gif原图: https://user-images.githubusercontent.com/15868458/63222726-eecf3180-c1dd-11e9-9dad-42812718c814.gif
通过http://www.ip138.com/ips138.asp?ip=
+待查询的ip地址
的方式获取相关信息(是一个静态页面), 然后用程序对静态页面中的关键信息进行提取
import requests
from lxml import etree
# 查询ip归属地
def query_ip_attribution(ip_addr):
# 设置用户代理头
headers = {
# 设置用户代理头(为狼披上羊皮)
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36",
}
target_url = "http://www.ip138.com/ips138.asp?ip="+ ip_addr
response = requests.get(target_url, headers = headers).content
data_etree = etree.HTML(response)
ip_attr = data_etree.xpath('//tr[3]/td/ul/li[1]//text()')
ip_attr = ip_attr[0].strip("本站数据:")
return {"ip_attr": ip_attr, "ip": ip_addr}
print(query_ip_attribution("5.181.23.103"));
https://chrome.google.com/webstore/detail/ip-address/ghlojgpiinfelppegaabbiphgomaidml
获取当前设备的IP地址,对于开发者而言,是一个经常遇到的问题,而《IP-Address》这款简洁小巧的软件, 能满足我们的需求