Scrapy: Guide to saving to CSV with custom column settings
P粉576184933
P粉576184933 2024-04-04 14:01:17
0
1
302

So basically I'm scraping data from the web and I have a project file imported into my main spider file. Now, when I grab the data and store it in a container and save it as a csv, the linked column always ends up being the first column in the csv. How to set the position of a custom column?

pName = response.css('#search .a-size-medium').css('::text').extract()
        pPrice = response.css('#search .a-price-whole').css('::text').extract()
        imgs = response.css('.sbv-product-img , .s-image-fixed-height .s-image').css('::attr(src)').extract()

        for prod in zip(pName , pPrice , imgs):        
            items['prodName'] = prod[0]     
            items['price'] = prod[1]        
            items['imgLink'] = prod[2]      
            
            yield items

P粉576184933
P粉576184933

reply all(1)
P粉391677921

Use the FEED_EXPORT_FIELDS settings in the settings.py file or spider custom_settings properties. The columns will be arranged in the order you set in Settings Values.

For example:

class MySpider(scrapy.Spider):

    custom_settings = {
        "FEED_EXPORT_FIELDS": ["prodName", "price", "imgLink"]
    }

Or in settings.py:

FEED_EXPORT_FIELDS=["prodName", "price", "imgLink"]

scrapy documentationLinks and link2

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!