调用API接口,查询手机号码归属地

Posted outsrkem

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用API接口,查询手机号码归属地相关的知识,希望对你有一定的参考价值。

使用https://www.juhe.cn/提供的接口,查询归属地
在官网注册key即可使用。

代码如下

#!/usr/bin/python
# -*- coding: utf-8 -*-
import json, urllib, sys 
from urllib import urlencode, urlopen
reload(sys)
sys.setdefaultencoding('utf8')

#调用接口,获取结果为二维字典
def getPageCode(url, params):
    params = urlencode(params)
    f = urllib.urlopen(url, params)
    content = f.read()
    res = json.loads(content)
    if res["resultcode"] == "200":
        return res
    else:
        print('Error code: %s'%res["resultcode"])

#处理字典为单元组列表 
def dictDate(data):
    province = data["province"]
    city = data["city"]
    res.append((phoneNum, province, city))
    #print res
    return res

#追加保存文件
def writeResult(resultdata):
    f = open("location.log", "a")
    for num,item,cit in resultdata:
       f.write("%s\t" %num)
       f.write("%s," %item)
       f.write("%s" %cit)
       f.write("\n")
    f.close()

if __name__ == "__main__":
    url = "http://apis.juhe.cn/mobile/get"
    apiKey = "79aac02768158ebeb43c6asd2e2qdwew"
    for line in open("test.txt", "r"):
        #读取电话号码
        phoneNum = line.strip(" \t\r\n")
        params = 
            "phone": phoneNum,
            "key": apiKey,
            "dtype" : "json",
           
        res = []
        #调用getPageCode(API接口),通过函数dictDate处理为单元组列表;[('13676512732', u'\u6d52\u6c5f', u'\u6e19\u5dde')]
        resUlt = dictDate((getPageCode(url, params))["result"])
        writeResult(resUlt)

定义号码文本test.txt

15306525811
13567156311
13968170611
15306525811
13567156311
13968170611

以上是关于调用API接口,查询手机号码归属地的主要内容,如果未能解决你的问题,请参考以下文章

shell调用api store查询手机号码归属地

shell调用api store查询手机号码归属地

免费手机号码归属地API查询接口

免费手机号码归属地API查询接口

手机号码归属地查询api接口

免费的API-手机号码归属地接口