KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
django-dump-load-utf8
★ 20
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
Indeed-Clone
:
A clone of Indeed implemented using MERN stack.
WHU-LaTex-Template
:
No description available.
MiseryVideoStream
:
A Bot For Streaming Videos In Tg Voice Chats.
ever-gauzy-desktop
:
Ever® Gauzy™ Desktop App - https://gauzy.co/downloads
platzi-punks
:
Platzi Punks is a randomly generated NFT based on https://avataaars.com
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
django-dump-load-utf8
?
Download (.md)
# Django Dump Load UTF-8 Django provides great database management, however, the `dumpdata` and `loaddata` commands do not use `utf-8` encoding. Thus, many data are not able to dump and load. Feel sorry that I'm not able to provide Django a patch, for the contribution guide is too long to read. If anyone has time, please help me to merge it to Django. ## Installation ```shell pip install django-dump-load-utf8 ``` ## Usage ### Add to `INSTALLED_APPS` ```python # settings.py INSTALLED_APPS = [ '...', 'django_dump_load_utf8', '...', ] ``` ### Use as a `manage.py` command ```shell manage.py dumpdatautf8 --output data.json # In another database manage.py loaddatautf8 data.json ``` ## About If this is useful, please give me a star! If you have time, please help me merge this to django! The project currently only supports python 3.8+, if you have time, please make it more competitive.