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

python基础知识之将item写入JSON文件:

时间:2017-06-09 11:11:23      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:self   set   bsp   nes   ber   pytho   string   pid   span   

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文件:

标签:self   set   bsp   nes   ber   pytho   string   pid   span   

原文地址:http://www.cnblogs.com/huwei934/p/6970805.html

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