Dump and Load Data

data dumping ν•˜κΈ°

python manage.py dumpdata

dump ν•œ dataλ₯Ό data.json file둜 λ§Œλ“€κΈ°

python manage.py dumpdata > data.json

fixtures directory λ§Œλ“€κΈ°

.
β”œβ”€β”€ accounts
β”‚Β Β  β”œβ”€β”€ admin.py
β”‚Β Β  β”œβ”€β”€ apps.py
β”‚Β Β  β”œβ”€β”€ forms.py
β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”œβ”€β”€ migrations
β”‚Β Β  β”œβ”€β”€ models.py
β”‚Β Β  β”œβ”€β”€ templates
β”‚Β Β  β”‚Β Β  └── accounts
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ login.html
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ profile.html
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ signup.html
β”‚Β Β  β”‚Β Β      └── update.html
β”‚Β Β  β”œβ”€β”€ tests.py
β”‚Β Β  β”œβ”€β”€ urls.py
β”‚Β Β  └── views.py
β”œβ”€β”€ articles
β”‚Β Β  β”œβ”€β”€ admin.py
β”‚Β Β  β”œβ”€β”€ apps.py
β”‚Β Β  β”œβ”€β”€ fixtures
β”‚Β Β  β”‚Β Β  └── articles
β”‚Β Β  β”‚Β Β      └── data.json
β”‚Β Β  β”œβ”€β”€ forms.py
β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”œβ”€β”€ migrations
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 0001_initial.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 0002_comment.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 0003_auto_20200505_2001.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”œβ”€β”€ models.py
β”‚Β Β  β”œβ”€β”€ templates
β”‚Β Β  β”‚Β Β  └── articles
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ comment.html
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ form.html
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ index.html
β”‚Β Β  β”‚Β Β      └── like.html
β”‚Β Β  β”œβ”€β”€ templatetags
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ article_extras.py
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”‚Β Β  └── __pycache__
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ article_extras.cpython-36.pyc
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ hashtags.cpython-36.pyc
β”‚Β Β  β”‚Β Β      └── __init__.cpython-36.pyc
β”‚Β Β  β”œβ”€β”€ tests.py
β”‚Β Β  β”œβ”€β”€ urls.py
β”‚Β Β  └── views.py
β”œβ”€β”€ a.txt
β”œβ”€β”€ crud
β”‚Β Β  β”œβ”€β”€ __init__.py
β”‚Β Β  β”œβ”€β”€ settings.py
β”‚Β Β  β”œβ”€β”€ urls.py
β”‚Β Β  └── wsgi.py
β”œβ”€β”€ db.sqlite3
β”œβ”€β”€ latest.dump
β”œβ”€β”€ manage.py
β”œβ”€β”€ media
β”œβ”€β”€ Procfile
β”œβ”€β”€ README-images
β”œβ”€β”€ README.md
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ runtime.txt
β”œβ”€β”€ src
β”‚Β Β  └── django-debug-toolbar
β”œβ”€β”€ static
β”‚Β Β  β”œβ”€β”€ css
β”‚Β Β  └── js
β”œβ”€β”€ templates
β”‚Β Β  β”œβ”€β”€ _accountdelete.html
β”‚Β Β  β”œβ”€β”€ base.html
β”‚Β Β  β”œβ”€β”€ _commentdelete.html
β”‚Β Β  β”œβ”€β”€ _deletemodal.html
β”‚Β Β  β”œβ”€β”€ _nav.html
β”‚Β Β  └── _replies.html
└── tree.txt

117 directories, 324 files

loaddata

$ python manage.py loaddata articles/data.json
Installed 113 object(s) from 1 fixture(s)

Last updated

Was this helpful?