码迷,mamicode.com
首页 > 编程语言 > 详细

python3.4 百度API接口

时间:2016-10-09 00:17:36      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
import urllib.request, json

url = ‘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接口

标签:

原文地址:http://www.cnblogs.com/alan-babyblog/p/5940493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!