Can I perform a dumpdata in Django on just a single model, rather than the whole app, and if so, how?
dumpdata
For an app it would be:
python man
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