vote up 0 vote down star

Hi!

I have a Django Application. I want to have all my models to be separated in files and lay in the specific directory, for instance:

/usr/project/models/myModel.py

Is it any possible? Just importing through from myModel import * doesn't work, unfortunately.

Is there any specific way to do this?

flag

Can you say more about how it doesn't work? – Ned Batchelder Oct 11 at 12:54
sure, it says that the particular file doesn't exist( – opetrov Oct 11 at 12:56

2 Answers

vote up 1 vote down check

Create file /usr/project/models/__init__.py containing from myModel import *. __init__.py file is required to make directory a python package.

link|flag
vote up 0 vote down

You can split your models into separate files, it's just Python code.

link|flag
yes,but what about the child directories? – opetrov Oct 11 at 12:55
1  
@opetrov: the standard import statement rules apply. Simply read up on the import statement. – S.Lott Oct 11 at 13:13
@s.lott from myModel import * does not work since there's no such package named myModel. – opetrov Oct 12 at 4:03

Your Answer

Get an OpenID
or

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