ingh.am
ingh.am

Reputation: 26812

oauth2 in python

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

Answers (2)

Travis Corrigan
Travis Corrigan

Reputation: 41

Make sure that you have pip installed. Then in your terminal enter the following command:

$ pip install oauth2

Upvotes: 4

Related Questions