基于Python的免费手机号码归属地查询

一、开通接口
免费手机号码(段)归属地查询服务使用聚合数据提供的免费接口,每天可以100次免费调用。可以通过 https://www.juhe.cn/docs/api/id/11 注册及开通。
二、请求接口
登录后复制
三、请求结果
以上就

一、开通接口

免费手机号码(段)归属地查询服务使用聚合数据提供的免费接口,每天可以100次免费调用。可以通过 https://www.juhe.cn/docs/api/id/11 注册及开通。

二、请求接口

<pre class="brush:python</a>;toolbar:false;">#!/usr/bin/python
# -*- coding: utf-8 -*-

import urllib, urllib2, sys, JSON

reload(sys)
sys.setdefaultencoding('utf-8')

url = 'Http://apis.juhe.cn/mobile/get'

params = {
"phone": "13429667914",# 查询的手机号码或手机号码前7位
"key": "******",# 您申请的API接口请求Key
}
querys = urllib.urlencode(params)

request = urllib2.Request(url, data=querys)
response = urllib2.urlopen(request)
content = response.read()
if (content):
try:
result = json.loads(content)
error_code = result['error_code']
if (error_code == 0):
province = result['result']['province']
city = result['result']['city']
areacode = result['result']['areacode']
zip = result['result']['zip']
company = result['result']['company']
print("省份:%sn城市:%sn区号:%sn邮编:%sn运营商:%s" % (province, city, areacode, zip, company))
else:
print("请求失败:%s %s" % (result['error_code'], result['reason']))
except Exception as e:
print("解析结果异常:%s" % e)
else:
# 可能网络异常等问题,无法获取返回内容,请求异常
print("请求异常")

登录后复制

三、请求结果

基于Python的免费手机号码归属地查询

以上就是基于Python的免费手机号码归属地查询的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:张大嘴,转转请注明出处:https://www.dingdanghao.com/article/300245.html

(0)
上一篇 2024-04-03 13:20
下一篇 2024-04-03 13:20

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号