Reputation: 26812
I'm looking to write a script that tweets from python (such as here), however when I try and call
import oauth2 as oauth
I just get this error:
ImportError: No module named oauth2
Where can I get this module from? Thanks
Upvotes: 3
Views: 10283
Reputation: 41
Make sure that you have pip installed. Then in your terminal enter the following command:
$ pip install oauth2
Upvotes: 4