python学习-使用requests模块查询ip地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习-使用requests模块查询ip地址相关的知识,希望对你有一定的参考价值。

思路是,使用requests模块调用阿里的ip接口查询ip归属地

关于requests模块的使用,可以查询相关文档,很强大,本次不做描述

#!/usr/bin/python
#coding=utf-8
import requests
 
def checkip(ip):
 
    URL = 'http://ip.taobao.com/service/getIpInfo.php'
    try:
        r = requests.get(URL, params=ip, timeout=3)
    except requests.RequestException as e:
        print(e)
    else:
        json_data = r.json()
        if json_data[u'code'] == 0:
            print '所在国家: ' + json_data[u'data'][u'country'].encode('utf-8')
            print '所在地区: ' + json_data[u'data'][u'area'].encode('utf-8')
            print '所在省份: ' + json_data[u'data'][u'region'].encode('utf-8')
            print '所在城市: ' + json_data[u'data'][u'city'].encode('utf-8')
            print '所属运营商:' + json_data[u'data'][u'isp'].encode('utf-8')
        else:
            print '查询失败,请稍后再试!'
 
ip={'ip':(raw_input('please input ip address:'))}
checkip(ip)

查询结果如下

技术分享图片

以上是关于python学习-使用requests模块查询ip地址的主要内容,如果未能解决你的问题,请参考以下文章

Python脚本查询IP的地理位置

python requests库爬取网页小实例:ip地址查询

python request模块学习

Python requests模块学习笔记

爬虫学习 04.Python网络爬虫之requests模块

python学习笔记8:网络编程--requests模块