Skip to content

Commit

Permalink
2.0.0 updates (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: Steve Bunting <steve@supergood.ai>
  • Loading branch information
stevenbunting and Steve Bunting authored Jul 11, 2024
1 parent 820ed5a commit b29615b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Initialize the Supergood client at the root of your application, or anywhere you
```python
from supergood import Client

Client()
Client.initialize()
```

**Passing keys**
Expand All @@ -31,7 +31,7 @@ Replace `<CLIENT_ID>` and `<CLIENT_SECRET>` with the API keys you generated in t
```python
from supergood import Client

Client(client_id="<CLIENT_ID>", client_secret_id="<CLIENT_SECRET>")
Client.initialize(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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "supergood"
description = "The Python client for Supergood"
readme = "README.md"
version= "1.1.10"
version= "2.0.0"
requires-python = ">=3.7"
authors = [
{ name = "Alex Klarfeld" },
Expand Down

0 comments on commit b29615b

Please sign in to comment.