码迷,mamicode.com
首页 > 其他好文 > 详细

ERROR 程序出错,错误原因:'bytes' object has no attribute 'read'

时间:2017-10-14 20:06:15      阅读:1031      评论:0      收藏:0      [点我收藏+]

标签:tee   json解析   不同   attr   utf-8   而不是   urllib   attribute   .com   

使用json解析数据时,通常遇到这里就会出现问题‘bytes‘ object has no attribute ‘read‘,这是由于使用的json内置函数不同,一个是load另一个是loads。

import urllib.request
import json

response = urllib.request.urlopen(‘http://www.reddit.com/r/all/top/.json‘).read()
jsonResponse = json.load(response)

for child in jsonResponse[‘data‘][‘children‘]:
    print (child[‘data‘][‘title‘])

通常解决方式有两种,一种是更改函数为loads,另一种是更改编码格式为utf8

第一种解决方式:

jsonResponse = json.loads(response.decode(‘utf-8‘))

第二种解决方式

使用json.loads()而不是json.load()

内容参考:https://stackoverflow.com/questions/6541767/python-urllib-error-attributeerror-bytes-object-has-no-attribute-read

ERROR 程序出错,错误原因:'bytes' object has no attribute 'read'

标签:tee   json解析   不同   attr   utf-8   而不是   urllib   attribute   .com   

原文地址:http://www.cnblogs.com/sanduo1314/p/7668144.html

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