Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
6k views

Django Dump Data For a Single Model?

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 ...
5
votes
1answer
921 views

Use Django dumpdata to dump a subset of overall data?

I'm trying to use dumpdata to generate JSON for a database that is sufficiently large for django to take a long, long time to output. Is there any way to dump only a subset of the fields; say, 100, ...
4
votes
2answers
1k views

In Django, getting a “Error: Unable to serialize database” when trying to dump data?

I'm getting an error when I'm trying to dump data to a JSON fixture in Djanog 1.2.1 on my live server. On the live server it's running MySQL Server version 5.0.77 and I imported a lot of data to my ...
2
votes
4answers
1k views

Django dumpdata UTF-8 (Unicode)

Is there a easy way to dump UTF-8 data from a database? I know this command: manage.py dumpdata > mydata.json But the data I got in the file mydata.json, Unicode data looks like: "name": ...
0
votes
1answer
192 views

IntegrityError: (1062, “Duplicate entry '3-add_author' for key 2”)

Database is MySQL. I use the django.contrib.auth. Here is all the info: manage.py dumpdata auth > my_auth.json --natural --exclude contenttypes Then I deleted the entire database (drop ...
0
votes
1answer
24 views

Want to timestap two files

I have two lines in my views.py file. views.py os.popen3("mysqldump -u *username* -p*password* *database* > /usr/local/src/djcode/c2duo_mms/backup.sql") os.popen3("gzip -c ...
0
votes
1answer
331 views

django-admin.py dumpdata to SQL statements

Hey, I'm trying to dump my data to SQL statements. the django-admin.py dumpdata provides only json,xml,yaml. so: does someone know a good way to do it?! I tried that: def sqldumper(model): result ...
0
votes
1answer
116 views

create fixtures with custom manager methods, json dumps and ways to avoid type error :xxx is not json serializable

I'm trying to create a test fixture using custom manager methods as my app uses a subset of dbtables and fewer records. so i dropped the idea of using initial_data. In manager I'm doing something like ...