On 5/7/07, johnny <[EMAIL PROTECTED]> wrote:
> I have a python script that runs in a multi threaded manner for
> backend to update certain flags in the table.  I want to use django
> models to do this.  I was wondering if I import the django models just
> like any other python, would that work?

You will need to either set the environment variable
DJANGO_SETTINGS_MODULE to point at a Django settings file, or use
manual configuration in your application to set up necessary
configuration like the database type, name and auth info. See the
documentation for details:

http://www.djangoproject.com/documentation/settings/#using-settings-without-setting-django-settings-module

> Also, what about the database connection, can I just create a database
> connection inside the python script and use Django Models?

Django will handle its own database connection automatically, based on
the settings you specify.


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
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