rodling
rodling

Reputation: 998

Twitter API with OAuth2

I am trying to use Twitter API, I followed directions of http://code.google.com/p/python-twitter/ I installed all the required items, when i test it I get 17 errors. When i try to import twitter it gives me:

File "C:\Python27\lib\site-packages\twitter.py", line 65, in <module>
import oauth2 as oauth
ImportError: No module named oauth2

I have looked at various questions on this topic, but none of them work for me or maybe because I am doing something wrong. Very lost since it seems i installed all the right files and etc.

Upvotes: 0

Views: 1971

Answers (2)

rodling
rodling

Reputation: 998

Using easy_install bypassed all the problems I experienced with dependencies and installation

Upvotes: 1

arcyqwerty
arcyqwerty

Reputation: 10675

Do you have oauth2 installed in your python environment?

http://pypi.python.org/pypi/oauth2/

Perhaps also look into the python-oauth2 package for your OS? (Ubuntu | Debian | Fedora)

Upvotes: 0

Related Questions