码迷,mamicode.com
首页 > Web开发 > 详细

Scrapy学习-6-JSON数据处理

时间:2018-05-17 21:39:36      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:with   学习   file   spider   star   closed   __init__   process   codec   

使用json模块处理JSON数据
class JsonwithEncodingPipeline(object):

    def __init__(self):
        self.file = codecs.open(article.json, w, encoding=utf-8)

    def process_item(self, item, spider):
        lines = json.dumps(dict(item), ensure_ascii=False) + \n
        self.file.write(lines)
        return item

    def spider_closed(self, spider):
        self.file.close()

 

内置JSON处理对象JsonItemExporter的使用
class JsonExporterPipeline(object):

    def __init__(self):
        self.file = open(articleexport.json, wb)
        self.exporter = JsonItemExporter(self.file, encoding=utf-8, ensure_ascii=False)
        self.exporter.start_exporting()

    def spider_closed(self, spider):
        self.exporter.finish_exporting()
        self.file.close()

    def process_item(self, item, spider):
        self.exporter.export_item(item)
        return item

 

Scrapy学习-6-JSON数据处理

标签:with   学习   file   spider   star   closed   __init__   process   codec   

原文地址:https://www.cnblogs.com/cq146637/p/9053214.html

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