Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Bunting committed Jan 12, 2024
1 parent 5a41295 commit 0f51d5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Set the environment variables `SUPERGOOD_CLIENT_ID` and `SUPERGOOD_CLIENT_SECRET
Initialize the Supergood client at the root of your application, or anywhere you're making API calls.

```python
from Supergood import Client
from supergood import Client

Client()
```
Expand All @@ -29,9 +29,9 @@ You can also pass the API keys in manually without setting environment variables
Replace `<CLIENT_ID>` and `<CLIENT_SECRET>` with the API keys you generated in the [getting started instructions](../getting-started.md).

```python
from Supergood import Client
from supergood import Client

Client(client_id="<CLIENT_ID>", client_secret="<CLIENT_SECRET>")
Client(client_id="<CLIENT_ID>", client_secret_id="<CLIENT_SECRET>")
```

Note: If your application makes use of the `multiprocessing` library to make API calls, you'll need to initialize a client for each `Process`.&#x20;
Expand Down

0 comments on commit 0f51d5d

Please sign in to comment.