Skip to content

Instantly share code, notes, and snippets.

View gulopine's full-sized avatar
👩‍🦰
she/her

Ginger Hawthorne gulopine

👩‍🦰
she/her
View GitHub Profile
@idan
idan / oauthlib_twitter_example.py
Created May 2, 2012 22:50
Requests + OAuth, sample usage
import requests
from requests.auth import OAuth1
url = u'https://api.twitter.com/1/account/settings.json'
client_key = u'...'
client_secret = u'...'
resource_owner_key = u'...'
resource_owner_secret = u'...'