I am trying to use the python twitter API but it can't find the Twitter class. https://pypi.python.org/pypi/twitter
For instance I do the following without any errors:
from twitter import *
But when I do:
>>> t = Twitter(auth)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'Twitter' is not defined
What am I missing? Is there a different python twitter library I need to install?