48👍
Using $ python manage.py loaddata myfixtures/*.json
would work as Bash will substitute the wildcard to a list of matching filenames.
27👍
I have multiple apps on the project directory and have each app with its ‘fixtures’ directory. So using some bash I can do:
python3 manage.py loaddata */fixtures/*.json
And that expands all of the json files inside of the fixtures directory on each app in my project. You can test it by simply doing:
ls */fixtures/*.json
- [Django]-Count frequency of values in pandas DataFrame column
- [Django]-Define an order for ManyToManyField with Django
- [Django]-How to show a PDF file in a Django view?
14👍
This thread shows up among the first results with a Google search “load data from all fixtures” and doesn’t mention what IMO is the correct solution for this, ie the solution that allows you to load any fixtures you want without any wildcard tricks nor a single modification of the settings.py file (I also used to do it this way)
Just make your apps’ fixtures directories flat (and not the usual Django scheme that e.g. goes app_name/templates/app_name/mytemplate.html), ie app_name/fixtures/myfixture.[json, yaml, xml]
Here’s what the django doc says :
For example:
django-admin loaddata foo/bar/mydata.json
would search /fixtures/foo/bar/mydata.json for each installed application, /foo/bar/mydata.json for each directory in FIXTURE_DIRS, and the literal path foo/bar/mydata.json.
What that means is that if you have a fixtures/myfixture.json in all your app directories, you just have to run
./manage.py loaddata myfixture
to load all the fixtures that are located there within your project … And that’s it ! You can even restrict what apps you load fixtures from by using –app or –exclude arguments.
I’ll mention that I use my fixtures only to populate my database while doing some development so I don’t mind having a flat structure in my ‘fixtures’ directories … But even if you use your fixtures for tests it seems like having a flat structure is the Django-esque way to go, and as
that answer suggests, you would reference the fixture from a specific app by just writing something like :
class MyTestCase(TestCase):
fixtures = ['app_name/fixtures/myfixture.json']
- [Django]-How do I get the object if it exists, or None if it does not exist in Django?
- [Django]-Django: sqlite for dev, mysql for prod?
- [Django]-How do I convert datetime.timedelta to minutes, hours in Python?
13👍
Why not create a Makefile that pulls in all your fixtures? eg something like:
load_all_fixtures:
./manage.py loaddata path/to/fixtures/foo.json
./manage.py loaddata path/to/fixtures/bar.json
./manage.py loaddata path/to/fixtures/baz.json
And then at the shell prompt, run
make load_all_fixtures
(This kind of approach is also good for executing unit tests for certain apps only and ignoring others, if need be)
- [Django]-Django migrations – workflow with multiple dev branches
- [Django]-Django models | get specific columns
- [Django]-Django {% with %} tags within {% if %} {% else %} tags?
- [Django]-How do I reuse HTML snippets in a django view
- [Django]-Is it secure to store passwords as environment variables (rather than as plain text) in config files?
- [Django]-Django "You have unapplied migrations". Which ones?
4👍
If you want to have this work on linux and windows you simply could use this for loading all your json-Fixtures:
import os
files = os.listdir('path/to/my/fixtures')
def loaddata(file):
if os.path.splitext(file)[1] == '.json' and file != 'initial_data.json':
print file
os.system("python manage.py loaddata %s" % file)
map(loaddata, files)
- [Django]-Programmatically saving image to Django ImageField
- [Django]-Django BigInteger auto-increment field as primary key?
- [Django]-Access web server on VirtualBox/Vagrant machine from host browser?
3👍
Works for me with Django-admin version 3.1.4
python manage.py loaddata json_file_1 json_file_2
My folder structure is like this –
app_name_1
├──fixtures
├────json_file_1.json
├────json_file_2.json
app_name_2
├──fixtures
├────json_file_3.json
- [Django]-Django queries: how to filter objects to exclude id which is in a list?
- [Django]-How do I get all the variables defined in a Django template?
- [Django]-How to remove a field from the parent Form in a subclass?
1👍
Manage.py loaddata will look automatically in certain places, so if you name your fixtures the same in each app, or put all your fixtures in the same folder it can be easy to load them all. If you have many different fixtures, and need a more complex naming schema, you can easily load all your fixtures using find with -exec
find . -name “*.json” -exec manage.py loaddata {} \;
As I state in this [question][2]
, I also have this in a fabfile. EDIT: use python manage.py if manage.py is not in your VE path.
- [Django]-OperationalError, no such column. Django
- [Django]-Can you perform multi-threaded tasks within Django?
- [Django]-Django internationalization language codes
1👍
If your fixtures are located into the same folder, you can simply ls
and xargs
: ls myfolder | xargs django-admin loaddata
.
Example with this structure:
$ tree fixtures/
root_dir/fixtures/
├── 1_users.json
├── 2_articles.json
└── 3_addresses.json
$ ls -d fixtures/* | xargs django-admin loaddata
would do the same as:
$ django-admin loaddata 1_users.json
$ django-admin loaddata 2_articles.json
$ django-admin loaddata 3_addresses.json
- [Django]-Add Indexes (db_index=True)
- [Django]-Django error <model> object has no attribute 'update'
- [Django]-Can django's auth_user.username be varchar(75)? How could that be done?
0👍
After doing a bit of searching, I ended up writing this script. It searches through all directories named “fixtures” for .json files and runs a “python manage.py loaddata {fixture_name}.json”. Sometimes ordering matters for foreign key constraints, so it leaves a fixture in the queue if the constraint cannot be resolved.
(Note: It requires the pip package simple_terminal that I wrote. And I set it up to be run by ‘python manage.py runscript ‘, which requires django-extensions.)
# load_fixture.py
#
# A script that searches for all .json files in fixtures directories
# and loads them into the working database. This is meant to be run after
# dropping and recreating a database then running migrations.
#
# Usage: python manage.py runscript load_fixtures
from simple_terminal import Terminal
from django.core.management import call_command
from django.db.utils import IntegrityError
def load_fixture(fixture_location):
# runs command: python manage.py loaddata <fixture_location>
call_command('loaddata', fixture_location)
def run():
with Terminal() as t:
# get all .json files in a fixtures directory
fixture_locations = t.command(
'find . -name *.json | grep fixtures | grep -v env')
while fixture_locations:
# check that every iteration imports are occuring
errors = []
length_before = len(fixture_locations)
for fl in fixture_locations:
try:
# try to load fixture and if loaded remove it from the array
load_fixture(fl)
print("LOADED: {}".format(fl))
fixture_locations.remove(fl)
except IntegrityError as e:
errors.append(str(e))
# if import did not occur this iteration raise exception due to
# missing foreign key reference
length_after = len(fixture_locations)
if length_before == length_after:
raise IntegrityError(' '.join(errors))
- [Django]-Django pass object to include
- [Django]-Django Model Field Default Based Off Another Field in Same Model
- [Django]-Use Python standard logging in Celery
0👍
This works well for me; it finds all files located in fixtures
directories within the the src
directory:
python manage.py loaddata \
$(ls -1 src/**/fixtures/* | tr '\n' '\0' | xargs -0 -n 1 basename | tr '\n' ' ')
- [Django]-Is there a simple way to get group names of a user in django
- [Django]-Django.db.utils.OperationalError Could not connect to server
- [Django]-Using Django auth UserAdmin for a custom user model
0👍
python manage.py loaddata ./*/fixtures/*.json
This command will look for the folder fixture
in all the directory and then it will pick up all the files with json
extension and will install the fixtures.
This way you won’t have to have just one folder for fixtures instead you can have fixtures on app level and in multiple apps.
It will work with the ideal folder structure like this –
app_name_1
├──fixtures
├────json_file_1.json
├────json_file_2.json
app_name_2
├──fixtures
├────json_file_3.json
- [Django]-Which Python API should be used with Mongo DB and Django
- [Django]-Django: Where does "DoesNotExist" come from?
- [Django]-How do I separate my models out in django?