Merge pull request #3658 from elzapp/patch-1

Formatted the example to fix the color highlighting
This commit is contained in:
Cory Benfield
2016-10-31 08:53:04 +00:00
committed by GitHub
+1 -1
View File
@@ -67,7 +67,7 @@ library allows Requests users to easily make OAuth authenticated requests::
>>> url = 'https://api.twitter.com/1.1/account/verify_credentials.json'
>>> auth = OAuth1('YOUR_APP_KEY', 'YOUR_APP_SECRET',
'USER_OAUTH_TOKEN', 'USER_OAUTH_TOKEN_SECRET')
... 'USER_OAUTH_TOKEN', 'USER_OAUTH_TOKEN_SECRET')
>>> requests.get(url, auth=auth)
<Response [200]>