Skip to content

Commit af47e5c

Browse files
committed
ci: regenerated with OpenAPI Doc 0.1.0, Speakeay CLI 0.15.14
1 parent 03b23ce commit af47e5c

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

USAGE.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!-- Start SDK Example Usage -->
2+
```python
3+
import sdk
4+
from sdk.models import operations, shared
5+
6+
s = sdk.SDK()
7+
s.config_security(
8+
security=shared.Security(
9+
api_key=shared.SchemeAPIKey(
10+
api_key="YOUR_API_KEY_HERE",
11+
),
12+
)
13+
)
14+
15+
req = operations.GetApisRequest(
16+
query_params=operations.GetApisQueryParams(
17+
metadata={
18+
"voluptas": [
19+
"expedita",
20+
"consequuntur",
21+
],
22+
},
23+
op=operations.GetApisOp(
24+
and_=False,
25+
),
26+
),
27+
)
28+
29+
res = s.apis.get_apis(req)
30+
31+
if res.apis is not None:
32+
# handle response
33+
```
34+
<!-- End SDK Example Usage -->

gen.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
management:
22
openapi-checksum: 8e8183d84cace76310a3208e63cd7855
33
openapi-version: 0.1.0
4-
speakeasy-version: 0.15.9
4+
speakeasy-version: 0.15.14
55
python:
66
author: Speakeasy
77
description: Speakeasy API Client SDK for Python
88
packagename: speakeasy-client-sdk-python
9-
version: 0.7.4
9+
version: 0.7.5
1010
telemetryenabled: null

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name="speakeasy-client-sdk-python",
11-
version="0.7.4",
11+
version="0.7.5",
1212
author="Speakeasy",
1313
description="Speakeasy API Client SDK for Python",
1414
long_description=long_description,

src/sdk/sdk.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class SDK:
3333
_security: shared.Security
3434
_server_url: str = SERVERS[SERVER_PROD]
3535
_language: str = "python"
36-
_sdk_version: str = "0.7.4"
37-
_gen_version: str = ""
36+
_sdk_version: str = "0.7.5"
37+
_gen_version: str = "0.15.14"
3838

3939
def __init__(self) -> None:
4040
self._client = requests.Session()

0 commit comments

Comments
 (0)