基于python的移动联通基站接口调用代码实例

#!/usr/bin/python
# -*- coding: utf-8 -*-
import json, urllib
from urllib import urlencode
#———————————-
# 移动联通基站调用示例代码 - 聚合数据
# 在线接口文档:http://www.juhe.cn/docs/8
#———————————-
def main():
#配置您申请的appkey
appkey = “*********************”
#1.基站定位
request1(appkey,”get”)
#基站定位
def request1(appkey, m=”get”):
url = “http://v.juhe.cn/cell/get”
params = {
“mnc” : “”, #移动基站:0 联通基站:1 默认:0
“lac” : “”, #小区号
“cell” : “”, #基站号
“hex” : “”, #进制类型,16或10,默认:10
“dtype” : “”, #返回的数据格式:json/xml/jsonp
“callback” : “”, #当选择jsonp格式时必须传递
“key” : appkey, #appkey
}
params = urlencode(params)
if m ==”get”:
f = urllib.urlopen(“%s?%s” % (url, params))
else:
f = urllib.urlopen(url, params)
content = f.read()
res = json.loads(content)
if res:
error_code = res[“error_code”]
if error_code == 0:
#成功请求
print res[“result”]
else:
print “%s:%s” % (res[“error_code”],res[“reason”])
else:
print “request api error”
if __name__ == ‘__main__’:
main()

Posted in 未分类

发表评论