Skip to content

Commit 69ef0db

Browse files
committed
fix docs
1 parent 64fe80c commit 69ef0db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A client library for accessing Ctrlplane API
77
First, create a client:
88

99
```python
10-
from ctrlplane_api_client import Client
10+
from ctrlplane import Client
1111

1212
client = Client(base_url="https://api.example.com")
1313
```
@@ -83,7 +83,7 @@ Things to know:
8383
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
8484

8585
```python
86-
from ctrlplane_api_client import Client
86+
from ctrlplane import Client
8787

8888
def log_request(request):
8989
print(f"Request event hook: {request.method} {request.url} - Waiting for response")
@@ -104,7 +104,7 @@ You can even set the httpx client directly, but beware that this will override a
104104

105105
```python
106106
import httpx
107-
from ctrlplane_api_client import Client
107+
from ctrlplane import Client
108108

109109
client = Client(
110110
base_url="https://api.example.com",

0 commit comments

Comments
 (0)