I am scraping Chinese website.
I have
FEED_EXPORT_ENCODING='utf-8'
in settings.py
file.
If I run my scraper via
scrapy crawl myscraper -o output.json
Then my output file shows correct Chinese.
But if I start my scraper via Scrapyd
then the Items created in http://my-website:6800/jobs
are not encoded and not correct.
Why FEED_EXPORT_ENCODING='utf-8'
not working with Scrapyd?
Then I set FEED_URI='files/output.json'
and then ran scraper via Scrapyd.
Now the output file at FEED_URI='files/output.json'
is in correct format/encoding.
What could go wrong?