Since Scrapy 1.2.0, a new setting FEED_EXPORT_ENCODING is introduced. By specifying it as utf-8, JSON output will not be escaped.
That is to add in your settings.py:
FEED_EXPORT_ENCODING = 'utf-8'
Since Scrapy 1.2.0, a new setting FEED_EXPORT_ENCODING is introduced. By specifying it as utf-8, JSON output will not be escaped.
That is to add in your settings.py:
FEED_EXPORT_ENCODING = 'utf-8'