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
This is the Speakeasy API Client SDK for Python. It is generated from our OpenAPI spec found at https://docs.speakeasyapi.dev/openapi.yaml and used for interacting with the [Speakeasy API](https://docs.speakeasyapi.dev/docs/speakeasy-api/speakeasy-api).
4
+
5
+
This SDK was generated using Speakeasy's SDK Generator. For more information on how to use the generator to generate your own SDKs, please see the [Speakeasy Client SDK Generator Docs](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks).
6
+
7
+
## Installation
8
+
9
+
```bash
10
+
pip install speakeasy-client-sdk-python
11
+
```
12
+
13
+
## Example usage
14
+
```python
15
+
import sdk
16
+
from sdk.models import operations, shared
17
+
18
+
s = sdk.SDK()
19
+
s.config_security(
20
+
security=shared.Security(
21
+
api_key=shared.SchemeAPIKey(
22
+
api_key="YOUR_API_KEY"# Replace with your API key from your Speakeasy Workspace
0 commit comments