Python脚本查询IP的地理位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python脚本查询IP的地理位置相关的知识,希望对你有一定的参考价值。

版本:Python2.7.9

模块:requests、bs4

这里用的是bs4解释网页,也可以用正则,少安装模块


# coding:utf-8
# 使用ip138查询目标ip的位置信息 20170303


import sys
reload(sys), sys.setdefaultencoding(‘utf-8‘)
import requests
from bs4 import BeautifulSoup

URL = ‘http://www.ip138.com/ips138.asp?ip=%s&action=2‘
HEADERS = {‘User-Agent‘: ‘Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36‘}

def ip_dz(ip):
    url_html = requests.get(URL % ip, headers=HEADERS).content
    data = BeautifulSoup(url_html, "html.parser")
    name = data.find(‘ul‘, attrs={‘class‘: ‘ul1‘}).find(‘li‘)
    data_name = str(name.string).split(‘:‘)[1]
    data_utf_8 = data_name.decode(‘utf8‘)
    return data_utf_8

if __name__ == "__main__":
    data_sun = ip_dz(‘119.29.29.29‘)
    print ‘*‘ * 50
    print data_sun


本文出自 “马走日” 博客,谢绝转载!

以上是关于Python脚本查询IP的地理位置的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

域名查询IP及公网IP地址地理位置查询

你如何在 python 中处理 graphql 查询和片段?

scrapy按顺序启动多个爬虫代码片段(python3)

python 脚本之 IP地址探测

php获取了ip地址,用php怎么获取ip的地理位置?请大虾赐教!