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 connected to my app using remote_api. When I try to import my models using this

from models import SimpleCounterShard

I get the following error

ImportError: No module named models

I tried searching for solutions and it seems something to do with PYTHONPATH. Can someone tell me how to fix this ? I am using a Mac.

share|improve this question

2 Answers

up vote 4 down vote accepted

I added the application directory to my system path and it worked

share|improve this answer

Connecting to remote_api provides you with access to your production data, but not to your python modules. Your source code must be available on your local machine to achieve what you're trying to do.

share|improve this answer
I do have my source code in my local machine and my cwd is same as my application directory – Sam Mar 9 '11 at 0:38

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.