I am looking for an Python library which is compatible with app engine and provides an interface to the Twitter API.
I found the python-twitter project - has anyone has used it on app engine?
|
I am looking for an Python library which is compatible with app engine and provides an interface to the Twitter API. I found the python-twitter project - has anyone has used it on app engine? |
|||||||
|
|
I just switched from python-twitter to tweepy. It has better coverage, builtin OAuth and the Streaming API. Take a look at this fork to work with App Engine. Later edit (thanks jmlane): The main distribution was fixed to work with App Engine so get it from here. |
||||
|
Yes, you can use python-twitter on app engine (support was added when python-twitter issue 64 was resolved). |
|||||
|
|
As stated, you can use python-twitter (in its current incarnation). To use it, simply add the twitter.py to your Python-GAE project, then to create an instance of the API:
It's important to set cache=None because this disables the internal caching which uses the filesystem by default (which is not allowed in GAE). Ideally, somebody should fix this to use memcached...but I'm too laaazzyy... ;-) Update: OK...this is freaking annoying...you also need to extract the following libraries from the google_appengine lib...meaning you will have to explicitly add the source bundles to your project instead of just referencing them:
if you don't add them to your project, it will work locally but not in GAE. |
|||||
|