Initial Commit

This commit is contained in:
Luke Hagar
2024-01-01 15:47:37 -06:00
parent 203c48ae7c
commit f91c1e6f54
4519 changed files with 88021 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{/* Start Python Security Options */}
### Per-Client Security Schemes
This SDK supports the following security scheme globally:
To authenticate with the API the `access_token` parameter must be set when initializing the SDK client instance. For example:
```python
import sdk
s = sdk.SDK(
access_token="<YOUR_API_KEY_HERE>",
)
res = s.server.get_server_capabilities()
if res.object is not None:
# handle response
pass
```
{/* End Python Security Options */}