Djenerator is a simple tool made to generate test/random data from the model description of django.
Run the setup.py script using the following command:
$ python setup.py install
Full documentation: https://github.com/mostafa-mahmoud/djenerator/blob/master/docs/usage.rst
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
Run the tests by running the command:
$ python runtests.py