Possible Duplicates:
Use only some parts of django?
Using only the DB part of Django
I want use Django ORM as standalone despite an hour of searching Google, I'm still left with several questions:
- Does it require me to set up my python project with a setting.py, /myApp/ directory, and modules.py file?
- Can I create a new models and run syncdb to have it automatically setup the tables and relationships or can I only use models from existing Django projects.
- There seems to be a lot questions regarding the PYTHONPATH. If your not calling existing models is this needed?
I guess the easiest thing would be for someone to just post a basic template or walk though of the process, clarifying the organization of the files e.g.:
db/
__init__.py
settings.py
myScript.py
orm/
__init__.py
models.py
and the basic essentials:
# settings.py
from django.conf import settings
settings.configure(
DATABASE_ENGINE = "postgresql_psycopg2",
DATABASE_HOST = "localhost",
DATABASE_NAME = "dbName",
DATABASE_USER = "user",
DATABASE_PASSWORD = "pass",
DATABASE_PORT = "5432"
)
# orm/models.py
# ...
# myScript.py
# import models..
and whether you need to run something like: django-admin.py inspectdb ...
(Oh, I'm running Windows if that changes anything regarding command-line arguments).
Thanks!!
