alexanderlukanin13 / scrapy-xlsx

XLSX exporter for Scrapy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scrapy-xlsx

scrapy-xlsx is a Scrapy exporter that supports the XLSX format. It produces files that can be read with Microsoft Excel or LibreOffice Calc.

Usage

Install the library using pip:

$ pip install scrapy-xlsx

Configure the exporter in your Scrapy project settings.py file:

FEED_EXPORTERS = {
    'xlsx': 'scrapy_xlsx.XlsxItemExporter',
}

Run your spider and export the data to XLSX (this command will overwrite the output file if it already exists):

$ scrapy crawl myspider -o output.xlsx

License

Licensed under the MIT License.

About

XLSX exporter for Scrapy

License:MIT License


Languages

Language:Python 100.0%