Open mycollectingbox opened 2 years ago
Hi, i tested your solution but i have utf-8 error.
python -Xutf8 manage.py dumpdata > data.json kept giving me problems with chinese chars. This tool solved the problem, thanks.
python -Xutf8 manage.py dumpdata > data.json kept giving me problems with chinese chars. This tool solved the problem, thanks.
Same goes with Georgian characters, but this repo totally solved it.
Glad that my code can help you all xD
python -Xutf8 manage.py dumpdata > data.json kept giving me problems with chinese chars. This tool solved the problem, thanks.
Same goes with Georgian characters, but this repo totally solved it.
And here with Spanish characters. This repo is a life saver, thank you panhaoyu
I think use the command line below will solve the problem, so this package is unnecessary
python -Xutf8 manage.py dumpdata > data.json
When using -Xutf8 option, Python uses UTF-8 as default encoding for text files instead of system encoding.