Skip to content Skip to sidebar Skip to footer

Python Twitter Api() Not Found Error

I'm trying to use the python-twitter module, but still having problems initiating the twitter.Api(). I've checked and rechecked that no other file named twitter.py or twitter.pyc i

Solution 1:

It appears that you are trying to follow the documentation for one Python Twitter module when you are in fact using another Python Twitter module.

The Api() method call you mention is part of this Python Twitter module. However, when you use easy_install twitter, you actually get this other Python Twitter module.


Post a Comment for "Python Twitter Api() Not Found Error"