博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
玩转百度即用API(4)——手机号码归属地查询
阅读量:6474 次
发布时间:2019-06-23

本文共 725 字,大约阅读时间需要 2 分钟。

hot3.png

,最多只能查到省份。

示例代码:

#-*- coding: utf-8 -*-#version:0.1#note:该即用API能查询电话号码基本归属信息(只能查到省份)import urllib.requestimport jsonimport collectionsurl = "http://apistore.baidu.com/microservice/mobilephone?tel="tel = input("输入你想查询的电话号码:")url = url + tel  #完整的URLresult = urllib.request.urlopen(url).read().decode("utf-8") info = json.loads(result,object_pairs_hook=collections.OrderedDict) #json格式转换为python格式,并指定为有序字典if (info['errNum'] == -1):      #查找失败    print(info['errMsg'])else:                           #输出天气相关信息    print("你查询的IP地址信息如下:")    print("电话号码:", info['retData']['telString'])    print("省份:", info['retData']['province'])    print("运营商:", info['retData']['carrier'])
运行结果:

转载于:https://my.oschina.net/u/1587304/blog/399805

你可能感兴趣的文章
紫书 习题11-11 UVa 1644 (并查集)
查看>>
App工程结构搭建:几种常见Android代码架构分析
查看>>
使用openssl进行证书格式转换
查看>>
ZOJ 3777 Problem Arrangement
查看>>
虚拟机类加载机制
查看>>
Callable和Future
查看>>
installshield12如何改变默认安装目录
查看>>
少用数字来作为参数标识含义
查看>>
ScrollView中嵌套ListView
查看>>
JAVA虚拟机05--面试必问之JVM原理
查看>>
Algs4-2.3.1如何切分数组
查看>>
uva 10815 - Andy's First Dictionary(快排、字符串)
查看>>
观察者模式
查看>>
在properties.xml中定义变量,在application.xml中取值问题
查看>>
js 数组
查看>>
Linux scp命令详解
查看>>
struct和typedef struct
查看>>
cell reuse & disposebag
查看>>
【故障处理】ORA-12545: Connect failed because target host or object does not exist
查看>>
云时代,程序员将面临的分化
查看>>