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've been experimenting with the Google App Engine, and I'm trying to import certain libraries in order to execute API commands. I've been having trouble importing, however. When I tried to execute "from apiclient.discovery import build", my website doesn't load anymore. When I test locally in IDLE, this command works.

share|improve this question

2 Answers

up vote 3 down vote accepted

the python api-client package comes with a command enable-app-engine-project that will install all of the required packages into your project folder: http://code.google.com/p/google-api-python-client/wiki/GoogleAppEngine

share|improve this answer
thanks so much. i can't believe this was what we were missing. – user881185 Mar 17 '12 at 20:46

The packages needs to be locally available, where did you put the packages, in the Python folder or in your project folder?

share|improve this answer

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.