Closed suhanoves closed 2 years ago
For languages with Unicode characters, ignoring ensure_ascii results in the Excel output of rows like
ensure_ascii
{ "Заголовок": "пример", }
in the wrong format:
{ "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a": "\u043f\u0440\u0438\u043c\u0435\u0440", }
From documentation:
If ensure_ascii is true (the default), the output is guaranteed to have all incoming non-ASCII characters escaped. If ensure_ascii is false, these characters will be output as-is.
Thank you! This has been published to PyPI at 2.2.0:
2.2.0
https://github.com/wharton/drf-excel/releases/tag/2.2.0
https://pypi.org/project/drf-excel/2.2.0/
For languages with Unicode characters, ignoring
ensure_ascii
results in the Excel output of rows likein the wrong format:
From documentation: