scrapy-zstd

A Scrapy plugin to compress feeds with Zstandard (zstd).


License
MIT
Install
pip install scrapy-zstd==0.1.1

Documentation

scrapy-zstd

A Scrapy plugin to compress feeds with Zstandard (zstd).

Installation

pip install scrapy-zstd

Usage

Add scrapy_zstd.postprocessing.ZstdPlugin to the postprocessing list in the FEEDS configurations.

FEEDS = {
    "/path/to/file.csv.zst": {
        "format": "csv",
        "postprocessing": ["scrapy_zstd.postprocessing.ZstdPlugin"],
    }
}