Skip to content

Commit b281a75

Browse files
committed
Update README.md
1 parent a97e0f8 commit b281a75

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ To use the client from a strictly anonymous context (no actions on behalf of a u
3636
```python
3737
from imgurpython import ImgurClient
3838

39-
client_id = "YOUR CLIENT ID"
40-
client_secret = "YOUR CLIENT SECRET"
39+
client_id = 'YOUR CLIENT ID'
40+
client_secret = 'YOUR CLIENT SECRET'
4141

4242
client = ImgurClient(client_id, client_secret)
4343

@@ -52,8 +52,8 @@ To initialize a client that takes actions on behalf of a user
5252

5353
```python
5454
from imgurpython import ImgurClient
55-
client_id = "YOUR CLIENT ID"
56-
client_secret = "YOUR CLIENT SECRET"
55+
client_id = 'YOUR CLIENT ID'
56+
client_secret = 'YOUR CLIENT SECRET'
5757

5858
client = ImgurClient(client_id, client_secret)
5959

@@ -72,10 +72,10 @@ or if you already have an access/refresh token pair you can simply do
7272
from imgurpython import ImgurClient
7373

7474
# If you already have an access/refresh pair in hand
75-
client_id = "YOUR CLIENT ID"
76-
client_SECRET = "YOUR CLIENT SECRET"
77-
access_token = "USER ACCESS TOKEN"
78-
refresh_token = "USER REFRESH TOKEN"
75+
client_id = 'YOUR CLIENT ID'
76+
client_SECRET = 'YOUR CLIENT SECRET'
77+
access_token = 'USER ACCESS TOKEN'
78+
refresh_token = 'USER REFRESH TOKEN'
7979

8080
# Note since access tokens expire after an hour, only the refresh token is required (library handles autorefresh)
8181
client = ImgurClient(client_id, client_secret, access_token, refresh_token)

0 commit comments

Comments
 (0)