将Scrapy Python输出写入JSON文件

时间:2019-05-26 16:50:08

标签: python json web-scraping scrapy append

我是Python和网络抓取的新手。在此程序中,我想将最终输出(所有3个链接的产品名称和价格)写入JSON文件。请帮忙!

    import scrapy
    from time import sleep
    import csv, os, json
    import random


    class spider1(scrapy.Spider):
        name = "spider1"

        def start_requests(self):
            list = [
                "https://www. example.com/item1",
                "https://www. example.com/item2",
                "https://www. example.com/item3"]

            for i in list:
                yield scrapy.Request(i, callback=self.parse)
                sleep(random.randint(0, 5))

        def parse(self, response):
            product_name = response.css('#pd-h1-cartridge::text')[0].extract()
            product_price = response.css(
                '.product-price .is-current, .product-price_total .is-current, .product-price_total ins, .product-price ins').css(
                '::text')[3].extract()

            name = str(product_name).strip()
            price = str(product_price).replace('\n', "")

data = {name, price}

yield data

extracted_data = []
    while i < len(data):

        extracted_data.append()
        sleep(5)
    f = open('data.json', 'w')
    json.dump(extracted_data, f, indent=4)

3 个答案:

答案 0 :(得分:2)

您不需要创建scrapy即可创建文件,首先在最后一次解析时返回Item时创建ItemLoader和Item,如果您需要json格式的此数据,则可以添加参数-o爬行蜘蛛时

例如:

scrapy crawl <spidername> -o <filename>.json

答案 1 :(得分:2)

实际上有一个简单的命令可以执行此操作(Read):

scrapy crawl <spidername> -o <outputname>.<format>
scrapy crawl quotes -o quotes.json

但是由于您要求输入python代码,所以我想到了:

    def parse(self, response):
        with open("data_file.json", "w") as filee:
            filee.write('[')
            for index, quote in enumerate(response.css('div.quote')):
                json.dump({
                    'text': quote.css('span.text::text').extract_first(),
                    'author': quote.css('.author::text').get(),
                    'tags': quote.css('.tag::text').getall()
                }, filee) 
                if index < len(response.css('div.quote')) - 1:
                    filee.write(',')
            filee.write(']')

与json文件的scrapy输出命令完全相同。

答案 2 :(得分:0)

您没有关闭data.json文件,因此该文件处于缓冲状态且未被写入。

添加一个close()方法:

f = open('data.json', 'w')
json.dump(extracted_data, f, indent=4)
f.close()

或使用with语句自动为您关闭文件:

with open('data.json', 'w') as f:
    json.dump(extracted_data, f, indent=4)

确保每次使用'w'标志确实要覆盖文件。如果没有,请改用'a'附加标志。