Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have several python projects and they all have a conf package:

/some_folder/project_1/
  conf/
    __init__.py
    some_source_file.py

/another_folder/project_2/
  conf/
    __init__.py
    another_source_file.py

For each project, I have created a .pth file in the site-packages folder with this contents:

.../site-packages/project_1.pth:
import sys; sys.path.append('/some_folder/project_1/')

.../site-packages/project_2.pth:
import sys; sys.path.append('/another_folder/project_2/')

I can access modules in /some_folder/project_1/:

import conf.some_source_file

but not the modules in /another_folder/project_2/:

import conf.another_source_file
AttributeError: 'module' object has no attribute 'another_source_file'

It looks as if python only searches the first conf path underneath any folders in sys.path. Is there a way to fix that ?

share|improve this question
1  
I'm not an expert with packaging, but why not put an __init__.py in both project_1 and project_2, and import relative to the project, such as import project_1.conf.some_source_file? – eryksun Jul 8 '11 at 21:14

1 Answer

up vote 6 down vote accepted

No. You will need to either rename one of them or turn the project directory into a package and import via that.

share|improve this answer
correct. i've actually been doing that all along and now I realize the problem does not seem to be with python itself, but with the mod_wsgi apache module in whose context the second project is running. that's a whole different story of course, so I've posted a new question: stackoverflow.com/questions/6631826/… – ssc Jul 9 '11 at 0:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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