Skip to content Skip to sidebar Skip to footer

Unicode Issue In Scrapy Python

For two hours, I am searching for this topic and I have tried a lot of solutions but noen worked in my case Here's the code first import scrapy class HamburgSpider(scrapy.Spider):

Solution 1:

You have the wrong setting name.

FEED_EXPORT_FORMAT is not one of the settings scrapy uses by default, you want FEED_EXPORT_ENCODING instead.

Post a Comment for "Unicode Issue In Scrapy Python"