Heim >Backend-Entwicklung >Python-Tutorial >Beispiel für den Aufruf von Code für die China Unicom-Basisstationsschnittstelle basierend auf Python

Beispiel für den Aufruf von Code für die China Unicom-Basisstationsschnittstelle basierend auf Python

巴扎黑
巴扎黑Original
2016-11-21 10:41:182153Durchsuche

#!/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 = {
        "<font color=red>mnc</font>" : "", #<font color=red>移动基站:0 联通基站:1  默认:0</font>
        "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__ == &#39;__main__&#39;:
    main()

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn