CsvItemExporter has an option join_multivalued
that defaults to a comma (=','
).
How can i change this to another char in my scrapy project?
CsvItemExporter has an option join_multivalued
that defaults to a comma (=','
).
How can i change this to another char in my scrapy project?
Scrapy version 1.5.0
your_scrapy_project/exporters.py
your_scrapy_project/settings.py
Set it in your custom
CSVItemExporter
this way:where
MY_CSV_DELIMITER
is an example setting you would have for a delimiter.