我刚开始编程Python。我想用scrapy来创建一个机器人,它表明了 TypeError:类型'字节'的对象我运行项目时不是JSON可序列化的。
import json
import codecs
class W3SchoolPipeline(object):
def __init__(self):
self.file = codecs.open('w3school_data_utf8.json', 'wb', encoding='utf-8')
def process_item(self, item, spider):
line = json.dumps(dict(item)) + '\n'
# print line
self.file.write(line.decode("unicode_escape"))
return item
from scrapy.spiders import Spider
from scrapy.selector import Selector
from w3school.items import W3schoolItem
class W3schoolSpider(Spider):
name = "w3school"
allowed_domains = ["w3school.com.cn"]
start_urls = [
"http://www.w3school.com.cn/xml/xml_syntax.asp"
]
def parse(self, response):
sel = Selector(response)
sites = sel.xpath('//div[@id="navsecond"]/div[@id="course"]/ul[1]/li')
items = []
for site in sites:
item = W3schoolItem()
title = site.xpath('a/text()').extract()
link = site.xpath('a/@href').extract()
desc = site.xpath('a/@title').extract()
item['title'] = [t.encode('utf-8') for t in title]
item['link'] = [l.encode('utf-8') for l in link]
item['desc'] = [d.encode('utf-8') for d in desc]
items.append(item)
return items
回溯:
TypeError: Object of type 'bytes' is not JSON serializable
2017-06-23 01:41:15 [scrapy.core.scraper] ERROR: Error processing {'desc': [b'\x
e4\xbd\xbf\xe7\x94\xa8 XSLT \xe6\x98\xbe\xe7\xa4\xba XML'],
'link': [b'/xml/xml_xsl.asp'],
'title': [b'XML XSLT']}
Traceback (most recent call last):
File
"c:\users\administrator\appdata\local\programs\python\python36\lib\site-p
ackages\twisted\internet\defer.py", line 653, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "D:\LZZZZB\w3school\w3school\pipelines.py", line 19, in process_item
line = json.dumps(dict(item)) + '\n'
File
"c:\users\administrator\appdata\local\programs\python\python36\lib\json\_
_init__.py", line 231, in dumps
return _default_encoder.encode(obj)
File
"c:\users\administrator\appdata\local\programs\python\python36\lib\json\e
ncoder.py", line 199, in encode
chunks = self.iterencode(o, _one_shot=True)
File
"c:\users\administrator\appdata\local\programs\python\python36\lib\json\e
ncoder.py", line 257, in iterencode
return _iterencode(o, 0)
File
"c:\users\administrator\appdata\local\programs\python\python36\lib\
json\encoder.py", line 180, in default
o.__class__.__name__)
TypeError: Object of type 'bytes' is not JSON serializable
答案 0 :(得分:12)
您自己正在创建这些bytes
个对象:
item['title'] = [t.encode('utf-8') for t in title]
item['link'] = [l.encode('utf-8') for l in link]
item['desc'] = [d.encode('utf-8') for d in desc]
items.append(item)
这些t.encode()
,l.encode()
和d.encode()
调用中的每一个都会创建一个bytes
字符串。不要这样做,将它保留为JSON格式以序列化这些。
接下来,您正在犯其他几个错误;在没有必要的地方编码太多了。将其留给json
模块和open()
调用返回的标准文件对象来处理编码。
您也不需要将items
列表转换为字典;它已经是一个可以直接进行JSON编码的对象:
class W3SchoolPipeline(object):
def __init__(self):
self.file = open('w3school_data_utf8.json', 'w', encoding='utf-8')
def process_item(self, item, spider):
line = json.dumps(item) + '\n'
self.file.write(line)
return item
我猜你是否遵循了假设Python 2的教程,而是使用Python 3。我强烈建议你找一个不同的教程;它不仅是为过时版本的Python编写的,如果它提倡line.decode('unicode_escape')
它正在教导一些极其糟糕的习惯,这会导致难以追踪的错误。
答案 1 :(得分:6)
只需写 <variable name>.decode("utf-8")
。
例如:
myvar = b'asdqweasdasd'
myvar.decode("utf-8")
答案 2 :(得分:3)
我今天正在处理这个问题,我知道我有一些编码为字节对象的东西,我试图用json.dump(my_json_object, write_to_file.json)
序列化为json。 my_json_object
在这种情况下是我创建的一个非常大的json对象,因此我要查看几个字典,列表和字符串,以查找仍然是字节格式的内容。
我最终解决它的方式:write_to_file.json
可以处理引起问题的所有字节对象。
在我的特殊情况下,这是一条通过
获得的行for line in text:
json_object['line'] = line.strip()
我的解决方法是,首先在write_to_file.json的帮助下找到此错误,然后将其更正为:
for line in text:
json_object['line'] = line.strip().decode()
答案 3 :(得分:-9)
我想你需要的答案在这里引用 Python sets are not json serializable
并非所有数据类型都可以json序列化。 我想pickle模块将满足您的需求。