获取本地IP以及地理位置

简介: 获取本地IP以及地理位置
from urllib.request import urlopen
my_ip = urlopen('http://ip.42.pl/raw').read()

import requests
import IPy

def get_location(ip):
    url =  'https://sp0.baidu.com/8aQDcjqpAAV3otqbppnN2DJv/api.php?co=&resource_id=6006&t=1529895387942&ie=utf8&oe=gbk&cb=op_aladdin_callback&format=json&tn=baidu&cb=jQuery110203920624944751099_1529894588086&_=1529894588088&query=%s'%ip
    # headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'}
    r = requests.get(url)
    r.encoding = r.apparent_encoding
    html = r.text
    print(html)
    c1 = html.split('location":"')[1]
    c2 = c1.split('","')[0]
    return c2

def check_ip(ip):
    try:
        IPy.IP(ip)
        print(IPy.IP(ip))
        return True
    except Exception as e:
        print(e)
        return False

if __name__ == '__main__':
    print(my_ip)
    ip = str(my_ip).strip('b')
    print(ip)
    ip=eval(ip)
    print(type(ip))
    print(ip)
    if check_ip(ip):
        print('IP位置为:',get_location(ip))
相关文章
|
6月前
|
搜索推荐 定位技术
如何快速查询自己的IP地址?
IP地址(Internet Protocol Address)是指互联网协议地址,又译为网际协议地址。IP地址是IP协议提供的一种统一的地址格式,它为互联网上的每一个网络和每一台主机分配一个逻辑地址,以此来屏蔽物理地址的差异。
如何快速查询自己的IP地址?
|
6月前
|
网络协议
地址重叠时,用户如何通过NAT访问对端IP网络?
地址重叠时,用户如何通过NAT访问对端IP网络?
|
前端开发 定位技术 数据库
|
缓存 网络协议
内网协议信息收集
内网协议信息收集
|
Java 定位技术 数据库
通过ip获取地理位置信息
通过ip获取地理位置信息
633 0
|
JSON 定位技术 数据格式
根据现有IP地址获取其地理位置(省份,城市等)的方法
根据现有IP地址获取其地理位置(省份,城市等)的方法
1180 0
|
安全 网络协议 网络安全
干货 | 内网信息收集总结(上)
干货 | 内网信息收集总结(上)
218 0
迅时语音网关获取网络IP地址配置方法
对迅时语音网关设备进行配置时,必须通过IP地址登录到设备Web配置页面。本文提供迅时设备的默认IP地址和IP地址获取方法。