Add a FEEDS setting to your project or spider, if not added yet.

The value of FEEDS must be a JSON object ({}).

If you have FEEDS already defined with key-value pairs, you can keep those if you want — FEEDS supports exporting data to multiple file storage service locations.

To add FEEDS to a project, define it in your Scrapy Cloud project settings or add it to your settings.py file:

settings.py
FEEDS = {}

To add FEEDS to a spider, define it in your Scrapy Cloud spider-specific settings (open a spider in Scrapy Cloud and select the Settings tab) or add it to your spider code with the update_settings method or the custom_settings class variable:

spiders/myspider.py
class MySpider:
    custom_settings = {
        "FEEDS": {},
    }