@natalyjazzviolin
I was able to fix the issue by using the unicodecsv
library instead of the csv
one and removing the decode_unicode=True
.
Edit : I found an even simpler fix : seting response.encoding = 'utf-8'
In fact, response.encoding was set the default value of ISO-8859-1
as it wasn’t able to detect the utf-8
encoding