python基础知识之将item写入JSON文件:
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础知识之将item写入JSON文件:相关的知识,希望对你有一定的参考价值。
pipelines.py
import json
class xxPipeline(object):
def __init__(self):
self.filename=open("xx.json","wb")
def process_item(self, item, spider):
jsontext=json.dumps(dict(item),ensure_ascii=False) + ",\n"
self.filename.write(jsontext.encode("utf-8"))
return item
def close_spider(self,spider):
self.filename.close()
注意:须将它的类添加到 settings.py文件ITEM_PIPELINES 配置
ITEM_PIPELINES = {"mySpider.pipelines.xxPipeline":300
}
也可通过命令
scrapy crawl xx(爬虫名字) -o xx.json
scrapy crawl xx(爬虫名字) -o xx.csv
scrapy crawl xx(爬虫名字) -o xx.xml
以上是关于python基础知识之将item写入JSON文件:的主要内容,如果未能解决你的问题,请参考以下文章