diff --git a/README.md b/README.md index 803e20c..f699f4b 100644 --- a/README.md +++ b/README.md @@ -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** @@ -31,7 +31,7 @@ Replace `` and `` with the API keys you generated in t ```python from supergood import Client -Client(client_id="", client_secret_id="") +Client.initialize(client_id="", client_secret_id="") ``` Note: If your application makes use of the `multiprocessing` library to make API calls, you'll need to initialize a client for each `Process`. diff --git a/pyproject.toml b/pyproject.toml index 5990163..8bb48d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" },