# Exporting scraped data

How would you like to get your scraped data?

> #### [Scrapy Cloud](../../../scrapy-cloud/usage/items/download.md#sc-download.md)
> 
> Download from Scrapy Cloud.

> #### [File storage](#file-storage.md)
> 
> Use Scrapy to export to a file storage service, like Amazon S3 or
> Google Cloud Storage.

> #### [Item storage](#item-storage.md)
> 
> Use Scrapy to export to a database, message queue, indexer, or similar
> service.

## File storage

Choose to which file storage service you wish to export using [Scrapy](https://scrapy.org):

> #### [Amazon S3](file-storage/amazon-s3.md)

> #### [Azure Storage](file-storage/azure-storage.md)

> #### [Dropbox](file-storage/dropbox.md)

> #### [FTP servers](file-storage/ftp.md)

> #### [Google Cloud Storage](file-storage/google-cloud-storage.md)

> #### [Google Drive](file-storage/google-drive.md)

> #### [Google Sheets](file-storage/google-sheets.md)

> #### [SFTP servers](file-storage/sftp.md)

File storage exporting with Scrapy also provides [many options](https://docs.scrapy.org/en/latest/topics/feed-exports.html#feed-options),
including:
[batching](https://docs.scrapy.org/en/latest/topics/feed-exports.html#std-setting-FEED_EXPORT_BATCH_ITEM_COUNT),
[field customization](https://docs.scrapy.org/en/latest/topics/feed-exports.html#std-setting-FEED_EXPORT_FIELDS),
[item filtering](https://docs.scrapy.org/en/latest/topics/feed-exports.html#item-filter),
[compression](https://docs.scrapy.org/en/latest/topics/feed-exports.html#post-processing).

You can also create your own [Scrapy storage backend](https://docs.scrapy.org/en/latest/topics/feed-exports.html#storage-backends).
Check the [code of existing storage backends](https://github.com/scrapy/scrapy/blob/721df895f9ea9d8073c13fbd2f75a6fbdc75ffc7/scrapy/extensions/feedexport.py#L258-L281)
to learn more.

## Item storage

Choose to which item storage service you wish to export using [Scrapy](https://scrapy.org):

> #### [Google BigQuery](item-storage/google-bigquery.md)

You can also [create a custom Scrapy item pipeline](https://docs.scrapy.org/en/latest/topics/item-pipeline.html#writing-your-own-item-pipeline)
to implement item-based storage, for example using an existing Python asyncio
client library for a [database](https://github.com/timofurrer/awesome-asyncio#database-drivers) or a
[message queue](https://github.com/timofurrer/awesome-asyncio#message-queues)
service.
