You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alternatively, you can build from source and install the wheel file:
@@ -113,7 +113,7 @@ the changes aren't made through the automated pipeline, you may want to make rel
113
113
114
114
### Publish with a GitHub workflow
115
115
116
-
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/keycardai/keycard-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
116
+
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/keycardlabs/keycard-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
The Keycard API Python library provides convenient access to the Keycard API REST API from any Python 3.9+
7
7
application. The library includes type definitions for all request params and response fields,
@@ -17,7 +17,7 @@ The REST API documentation can be found on [docs.keycard.ai](https://docs.keycar
17
17
18
18
```sh
19
19
# install from PyPI
20
-
pip install keycardai-api
20
+
pip install keycard_api
21
21
```
22
22
23
23
## Usage
@@ -67,7 +67,7 @@ You can enable this by installing `aiohttp`:
67
67
68
68
```sh
69
69
# install from PyPI
70
-
pip install keycardai-api[aiohttp]
70
+
pip install keycard_api[aiohttp]
71
71
```
72
72
73
73
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
@@ -247,9 +247,9 @@ zone = response.parse() # get the object that `zones.list()` would have returne
247
247
print(zone.items)
248
248
```
249
249
250
-
These methods return an [`APIResponse`](https://github.com/keycardai/keycard-python/tree/main/src/keycard_api/_response.py) object.
250
+
These methods return an [`APIResponse`](https://github.com/keycardlabs/keycard-python/tree/main/src/keycard_api/_response.py) object.
251
251
252
-
The async client returns an [`AsyncAPIResponse`](https://github.com/keycardai/keycard-python/tree/main/src/keycard_api/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
252
+
The async client returns an [`AsyncAPIResponse`](https://github.com/keycardlabs/keycard-python/tree/main/src/keycard_api/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
253
253
254
254
#### `.with_streaming_response`
255
255
@@ -353,7 +353,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
353
353
354
354
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
355
355
356
-
We are keen for your feedback; please open an [issue](https://www.github.com/keycardai/keycard-python/issues) with questions, bugs, or suggestions.
356
+
We are keen for your feedback; please open an [issue](https://www.github.com/keycardlabs/keycard-python/issues) with questions, bugs, or suggestions.
0 commit comments