资源描述:
《基于python的餐厅地图接口调用代码实例》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、基于Python的餐厅地图接口调用代码实例代码描述:基于Python的餐厅地图接口调用代码实例代码平台:聚合数据#!/usr/bin/python#-*-coding:utf-8-*-importjson,urllibfromurllibimporturlencode #----------------------------------#餐饮美食调用示例代码-聚合数据#在线接口文档:http://www.juhe.cn/docs/45#---------------------------------- defmain(
2、): #配置您申请的APPKey appkey="*********************" #1.按城市检索 request1(appkey,"GET") #2.检索周边美食 request2(appkey,"GET") #按城市检索defrequest1(appkey,m="GET"): url="http://apis.juhe.cn/catering/querybycity" params={ "city":"",#城市名称,如:北京URLe
3、ncode "page":"",#当前页数,默认1 "pagesize":"",#每页返回,最大50 "key":appkey,#应用APPKEY(应用详细页查询) "dtype":"",#返回数据的格式,xml或json,默认json } params=urlencode(params) ifm=="GET": f=urllib.urlopen("%s?%s"%(url,params)) else: f=urll
4、ib.urlopen(url,params) content=f.read() res=json.loads(content) ifres: error_code=res["error_code"] iferror_code==0: #成功请求 printres["result"] else: print"%s:%s"%(res["error_code"],res["reason"]) el
5、se: print"requestapierror" #检索周边美食defrequest2(appkey,m="GET"): url="http://apis.juhe.cn/catering/query" params={ "lng":"",#经纬(如:121.538123),传递的适合google地图的坐标系 "lat":"",#纬度(如:31.677132) "radius":"",#搜索范围,单位M,默认3000 "page":"",
6、#当前页数,默认1,最大50. "key":appkey,#应用APPKEY(应用详细页查询) "dtype":"",#返回数据的格式,xml或json,默认json } params=urlencode(params) ifm=="GET": f=urllib.urlopen("%s?%s"%(url,params)) else: f=urllib.urlopen(url,params) content=f.read() re
7、s=json.loads(content) ifres: error_code=res["error_code"] iferror_code==0: #成功请求 printres["result"] else: print"%s:%s"%(res["error_code"],res["reason"]) else: print"requestapierror" if__name__=='
8、__main__': main()