首页 > 代码库 > python3.4 百度API接口
python3.4 百度API接口
# -*- coding: utf-8 -*-import urllib.request, jsonurl = ‘http://apis.baidu.com/netpopo/illegaladdr/coord?lat=31.3004088721&lng=121.4849729860&range=2000&num=10‘add_header= {"apikey":"9a1bfb513e18XXXXXf48314508e"}req = urllib.request.Request(url,headers=add_header)resp = urllib.request.urlopen(req)content = resp.read().decode(‘utf-8‘) #不用.decode(‘utf-8‘)会报错the JSON object must be str, not ‘bytes‘res = json.loads(content)if(res): print(res)
python3.4 百度API接口
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。