I'd like to run a script to populate my database, i'd like to access it through the Django database API. The only problem is that i don't know what i would need to import to gain access to this.
any ideas?
|
2
|
|
|
|
|
|
Import your settings module too
should do the trick. |
||
|
|
|
|
In addition to your own models files, you need to import your settings module as well. |
||
|
|
|
|
If you use the
For non-interactive use you could implement a custom command and run it with |
|||
|
|
|
This is what I have at the top of one my data loading scripts.
This should all execute before you do much else in your script. Another method is to use fixtures and manage.py. Though if you are just trying to accomplish a bulk data load to initialize a database this should work fine. Also depending on what you are doing you may or may not want to do it all in one transaction. Uncomment the transaction line above and structure your code similar to this.
|
||
|