Running from a Cron Job (Scheduled task)
Simple way to run Django, having access to your models, from a cron job/scheduled task or command line.
Place a file into your app directory, alongside manage.py, called cron.py (for example).
Now, from the same directory, run;
Easy as that. Depending on your setup you may want to add more to your PYTHONPATH
or move this file to a different location.