Why am I getting this error when running my application which is trying to OAuth with Foursquare?

import httplib2 ImportError: No module named httplib2

I have installed httplib2 by downloading it and $ python setup.py install on the command line as instructed here

Am I missing something? Thanks

link|improve this question

75% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You will need to include the library in your project so that the App Engine runtime knows what you're importing.

From here:

You can include other pure Python libraries with your application by putting the code in your application directory. If you make a symbolic link to a module's directory in your application directory, appcfg.py will follow the link and include the module in your app.

link|improve this answer
I've never used symbolic link; what happen when the user publishes the app? Are the symlinked libraries packed too? – systempuntoout Feb 20 '11 at 12:32
2  
@systempuntoout: yes, appcfg.py doesn't care if the modules in the application directory are symbolic links or not; it uploads them just fine. – Wooble Feb 20 '11 at 14:13
@Wooble I am using Google App Engine Launcher, do I use terminal to create the symlinks to the httplib2 library? – keith Feb 21 '11 at 14:45
@keith: yes, ln -s creates symbolic links. I'm not sure if aliases created in the Finder will work the same with dev_appserver. I suspect they might, although I'm not at a Mac to test it at the moment. – Wooble Feb 21 '11 at 14:53
feedback

I've created a simple example on how to do this when using Google App Engine. (https://github.com/muanis/foursquare-oauth-bootstrap) basically you need Google oAuth2 Client (http://code.google.com/p/google-api-python-client/) and httplib2 (http://code.google.com/p/httplib2/)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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