Todd O'Bryan wrote:

>Is there any way to run the stuff Django needs from inside Python  
>interactions,
>
There is. All those management method are located in 
django.core.management. You can do it in python prompt like this:

    import os
    os.environ['DJANGO_SETTINGS_MODULE']='myproject.settings'
    from django.core import management
    management.startapp('myapp','/path/to/apps/dir')

Look in django/core/management.py for other options

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

Reply via email to