Dumps DB data for each application to that application's fixtures directory.
For example:
$ ./manage.py dump_app_data
...
$ hg status
M apps/foo/fixtures/dev.json
M apps/bar/fixtures/dev.json
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | import os
import sys
import logging
from optparse import make_option
from django.conf import settings
from django.core.management.base import BaseCommand
from django.utils.importlib import import_module
from django.core.management import call_command
from django.core.management.commands.dumpdata import Command as DumpData
log = logging.getLogger("dump_app_data")
HELP = """\
Dumps data for each app to the directory returned by
``settings.DUMP_APP_DATA_FUNC``. If none is specified, a default function will
be used which dumps data to ``$APP/fixtures/${FIXTURE-dev}.${FORMAT-json}`` for
all apps which share a prefix with ``ROOT_URLCONF``.
"""
class Command(BaseCommand):
help = HELP
can_import_settings = True
option_list = DumpData.option_list + (
make_option('--fixture-name', dest='fixture_name', default='dev',
help='Fixture name to write to'),
)
@classmethod
def app_name_to_path(cls, app_name):
app_module = import_module(app_name)
return os.path.join(os.path.dirname(app_module.__file__))
@classmethod
def DEFAULT_DUMP_APP_DATA_FUNC(cls, options, app_name):
prefix = settings.ROOT_URLCONF.split('.')[0]
if not app_name.startswith(prefix):
log.debug("app %r is not prefixed with %r; ignoring",
app_name, prefix)
return None
return os.path.join(cls.app_name_to_path(app_name), "fixtures",
options["fixture_name"] + "." + options["format"])
@classmethod
def dump_app_data(cls, options, app_name, output_file):
dumpdata_options = dict(options)
dumpdata_options.pop("fixture_name")
output_path = os.path.dirname(output_file)
if not os.path.exists(output_path):
os.makedirs(output_path)
orig_stdout = sys.stdout
try:
sys.stdout = open(output_file + ".tmp", "w")
call_command("dumpdata", app_name.split(".")[-1],
**dumpdata_options)
finally:
sys.stdout.close()
sys.stdout = orig_stdout
os.rename(output_file + ".tmp", output_file)
try:
output = open(output_file, "r")
if len(output.read(16)) < 10:
os.remove(output_file)
print "no data for %r; removing %r" %(app_name, output_file)
else:
print "dumped data for %r to %r" %(app_name, output_file)
finally:
output.close()
def handle(self, *args, **options):
path_func = getattr(settings, "DUMP_APP_DATA_FUNC",
self.DEFAULT_DUMP_APP_DATA_FUNC)
for app_name in settings.INSTALLED_APPS:
path = path_func(options, app_name)
if not path:
continue
self.dump_app_data(options, app_name, path)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.