1. 错误
Traceback (most recent call last):
File "spider.py", line 83, in <module>
runSpider('games')
File "spider.py", line 74, in runSpider
for url in urls:
File "spider.py", line 35, in getNewsUrl
data = json.loads(response.content)
TypeError: the JSON object must be str, not 'bytes'
2. 解决
将 json.loads(lines)
修改为 json.loads(lines.decode())
即可解决。