vote up 1 vote down star
1

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

flag

74% accept rate
3  
Duplicate of stackoverflow.com/questions/302651/… – William Brendel Jun 2 at 3:10
1  
The question linked by William Brendel has the best answer, but also see stackoverflow.com/questions/579511 for some more discussion. – Van Gale Jun 2 at 3:53
I wonder how you "searched google for 1 hour" and dint get the questions pointed out, by comments by Van Gale and William Brendel. – becomingGuru Jun 2 at 4:44
its not an "exact duplicate" - while that post helped me to find the answer it wasn't what I was looking for. I hope that closed as "exact duplicate" doesn't change the searchability of my solution below because it is a lot more thorough and how to create models that aren't convered anywhere else. – KeyboardInterrupt Jun 2 at 18:47
becomingGuru: because all my searches were specific to using Django's ORM. I didn't think to search something as general as how to use parts django – KeyboardInterrupt Jun 4 at 4:23

closed as exact duplicate by William Brendel, Van Gale, Alex Martelli, S.Lott, Carl Meyer Jun 2 at 15:25

2 Answers

vote up 1 vote down

Ah ok I figured it out and will post the solutions for anyone attempting to do the same thing.

This solution assumes that you want to create new models.

First create a new folder to store your files. We'll call it "standAlone". Within "standAlone", create the following files:

__init__.py
myScript.py
settings.py

Obviously "myScript.py" can be named whatever.

Next, create a directory for your models.

We'll name our model directory "myApp", but realize that this is a normal Django application within a project, as such, name it appropriately to the collection of models you are writing.

Within this directory create 2 files:

__init__.py
models.py

Your going to need a copy of manage.py from an either an existing Django project or you can just grab a copy from your Django install path:

django\conf\project_template\manage.py

Copy the manage.py to your /standAlone directory. Ok so you should now have the following structure:

\standAlone
    __init__.py
    myScript.py
    manage.py
    settings.py
\myApp
    __init__.py
    models.py

Add the following to your myScript.py file:

# settings.py
from django.conf import settings

settings.configure(
    DATABASE_ENGINE    = "postgresql_psycopg2",
    DATABASE_NAME      = "myDatabase",
    DATABASE_USER      = "myUsername",
    DATABASE_PASSWORD  = "myPassword",
    DATABASE_HOST      = "localhost",
    DATABASE_PORT      = "5432",
    INSTALLED_APPS     = ("myApp")
)

from django.db import models
from myApp.models import *

and add this to your settings.py file:

    DATABASE_ENGINE    = "postgresql_psycopg2"
    DATABASE_NAME      = "myDatabase"
    DATABASE_USER      = "myUsername"
    DATABASE_PASSWORD  = "myPassword"
    DATABASE_HOST      = "localhost"
    DATABASE_PORT      = "5432",
    INSTALLED_APPS     = ("myApp")

and finally your myApp/models.py:

# myApp/models.py
from django.db import models

class MyModel(models.Model):
     field = models.CharField(max_length=255)

and that's it. Now to have Django manage your database, in command prompt navigate to our /standalone directory and run:

manage.py sql MyApp
link|flag
Please update stackoverflow.com/questions/302651/… with new or different information. Please add your answer to that version of your question. – S.Lott Jun 2 at 10:16
vote up -2 vote down

This sounds like quite a few questions. What I would is first download the free Django book at: http://www.djangobook.com/ This is a really good resource that starts with installation, setup, and then it moves on to a simple application. As the book progresses more advanced topics are introduced. For example using mod_python vs. modwsgi.

You can also buy some books such as: http://www.amazon.com/Python-Development-Django-Developers-Library/dp/0132356139/ref=sr_1_4?ie=UTF8&s=books&qid=1243912362&sr=8-4 which I have used and thought quite readible. But again, the Django book is the best place to start coding in Django.

link|flag
This sounds like you didn't read any of the questions. ;) – musicfreak Jun 2 at 3:22
its not a Django question at all, not really anyway. ORM is Object Relational Model, its what allows Django to neatly handle database connections. I want to use this standalone which is a bit of an advanced (for lack of a better word) question. its so you can use the slickness of Django's db management in non-Django projects. – KeyboardInterrupt Jun 2 at 3:53
ooooooppppppsssss...... i am sorry.... i'll read the question better next time :) – DrDee Jun 2 at 13:00

Not the answer you're looking for? Browse other questions tagged or ask your own question.