Django 1.6: How to ignore binding in python manage.py loaddata?

I need an answer for this, right now, by doing this command:

python manage.py loaddata app/myapp/fixtures/* --settings=setting.develop

This works fine, but now I want to make the same command, but ignore or skip the simple file inside app / myapp / fixtures /, so I do not want to write one boot information for each built-in device inside, I wanted to make only one command and use that something like --exclude or --ignore or some way to do it on one line and leave / * to re-run all the files inside.

Thanks in advance!

+4
source share
1 answer

Django ; Django loaddata :

excluding_loaddata.py

from optparse import make_option

from django.core.management.commands.loaddata import Command as LoadDataCommand


class Command(LoadDataCommand):
    option_list = LoadDataCommand.option_list + (
        make_option('-e', '--exclude', action='append',
                    help='Exclude given fixture/s from being loaded'),
    )

    def handle(self, *fixture_labels, **options):
        self.exclude = options.get('exclude')
        return super(Command, self).handle(*fixture_labels, **options)

    def find_fixtures(self, *args, **kwargs):
        updated_fixtures = []
        fixture_files = super(Command, self).find_fixtures(*args, **kwargs)
        for fixture_file in fixture_files:
            file, directory, name = fixture_file

            # exclude a matched file path, directory or name (filename without extension)
            if file in self.exclude or directory in self.exclude or name in self.exclude:
                if self.verbosity >= 1:
                    self.stdout.write('Fixture skipped (excluded: %s, matches %s)' %
                                      (self.exclude, [file, directory, name]))
            else:
                updated_fixtures.append(fixture_file)
        return updated_fixtures

$ python manage.py excluding_loaddata app/fixtures/* -e not_this_fixture
+2

Source: https://habr.com/ru/post/1628575/


All Articles