Can you perform a 'dumpdata' in Django on just a single model (rather than the whole app) and if so, how?

E.g. for an app it would be...

python manage.py dumpdata myapp

However, I want some specific model, (e.g. myapp.mymodel) to be dumped... reason being I have some huge datasets (3 million records plus) in the same app that I would not like dumped.

link|improve this question

I find your question not easy to understand. You want to load an SQL dump into your database? Or you want to do some sort of toString() on and instance of a model? – Lenni Jul 11 '09 at 6:42
hope that clarifies things... – nategood Jul 11 '09 at 6:51
feedback

7 Answers

up vote 41 down vote accepted

Well, this was indeed a required functionality. And it was added, too. So you can dump individual models using dumpdata. But it was added after the v1.1 alpha 1 release.

Syntax is same.

./manage.py dumpdata myapp1 myapp2.my_model

You'll need to be using a recent trunk checkout to access this feature. But as you said you are using v1.0. Hard luck.

link|improve this answer
2  
django 1.3 ./manage.py dumpdata myapp.mymodel – gath May 17 '11 at 9:52
1  
gath, didn't understood the negative vote on post which is almost 2 years old. Moreover above code worked fine even with v1.1 . New features in new releases doesn't make older answers invalid. – simplyharsh May 17 '11 at 14:01
1  
+1 to balance as it still helped me. ;) – Gringo Suave Jun 7 '11 at 2:26
feedback

As noted, you can't do this through a manage.py command in Django 1.0. However you could use a script to export the json file, and load it using loaddata:

from django.core import serializers
from myproject.myapp import models
data = serializers.serialize("json", models.MyModel.objects.all())
out = open("mymodel.json", "w")
out.write(data)
out.close()
link|improve this answer
Awesome, thanks! – Uku Loskit Dec 6 '10 at 15:30
This is a great script because you can get even more granular if you'd like. If you instead do a .filter(...) on line three above you can dump just the specific records you want. – Gringo Suave Jun 7 '11 at 3:18
Works like a charm! – Joelbitar Nov 7 '11 at 9:33
feedback

Great tip! And it works well.

One more tip: The indent=4 makes it more readable:

data = serializers.serialize("json", models.MyModel.objects.all(),indent=4)
link|improve this answer
feedback

I think you had the solution in your question. You can dump an individual model like this:

./manage.py dumpdata myapp.my_model

link|improve this answer
i tried it before posting. had no luck. i'm in django 1.0. also tried myapp.models.mymodel? – nategood Jul 11 '09 at 7:09
you need to be using trunk for this to work. – nbv4 Jul 11 '09 at 7:18
feedback

As a workaround you could make another app and copy the model but point it to the existing table with the db_table meta option. Then you could just dump the models you copied into the new app. You existing app wouldn't be affected.

link|improve this answer
feedback

I'd like to dump the entire project (including tables auth_XXX, django_XXX, etc.) except table X of the app "main" because it's too large. How do I do that?

link|improve this answer
feedback

I've created a management command the generate a fixture on a per model basis. Fixtures can be generated by running:

./manage generate_fixtures app.model.MyModel --file=dump/MyModel.json

code at: https://gist.github.com/2394883

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.