Djenerator¶
Djenerator is a simple tool made to generate test/random data from the model description of django.
Usage¶
Full documentation: http://pythonhosted.org/djenerator/usage.html
Add ‘djenerator’ to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'djenerator',
...
)
The generation of data are then done by a command using manage.py file in your project:
$ python manage.py jenerate size app_name output_file
There’s another command that can be used for data generation, in this case the generated data will be dumped in the database:
$ python manage.py jendb size app_name