-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is another solution for Python3.7+ #1
Comments
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. |
Same goes with Georgian characters, but this repo totally solved it. |
Glad that my code can help you all xD |
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.
The text was updated successfully, but these errors were encountered: