#!/usr/bin/python # -*- coding: utf-8 -*- import json, urllib from urllib import urlencode #---------------------------------- # 移動聯(lián)通基站調(diào)用示例代碼 - 聚合數(shù)據(jù) # 在線接口文檔: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 = { "<font color=red>mnc</font>" : "", #<font color=red>移動基站:0 聯(lián)通基站:1 默認(rèn):0</font> "lac" : "", #小區(qū)號 "cell" : "", #基站號 "hex" : "", #進(jìn)制類型,16或10,默認(rèn):10 "dtype" : "", #返回的數(shù)據(jù)格式:json/xml/jsonp "callback" : "", #當(dāng)選擇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()
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com