I worked on a console application which uses django to do some  
database related tasks.
I started my code with these lines:

---

#!/usr/bin/env python
import sys
sys.path.append('/Library/Frameworks/Python.framework/Versions/2.4/ 
lib/python2.4/site-packages/django')
sys.path.append('/path/to/the/application/directory/')

import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'applicationname.settings'

---

 From this point you can continue by importing the neccessary  
libraries and writing your code.

Maybe there is a better way of doing it but works perfeclty.

---
Roodie




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to