syllable-sdk 0.44.24__py3-none-any.whl → 0.45.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- syllable_sdk/_version.py +3 -3
- syllable_sdk/utils/__init__.py +1 -4
- {syllable_sdk-0.44.24.dist-info → syllable_sdk-0.45.0.dist-info}/METADATA +3 -3
- {syllable_sdk-0.44.24.dist-info → syllable_sdk-0.45.0.dist-info}/RECORD +5 -5
- {syllable_sdk-0.44.24.dist-info → syllable_sdk-0.45.0.dist-info}/WHEEL +0 -0
syllable_sdk/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "syllable-sdk"
|
|
6
|
-
__version__: str = "0.
|
|
6
|
+
__version__: str = "0.45.0"
|
|
7
7
|
__openapi_doc_version__: str = "0.0.3"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.
|
|
8
|
+
__gen_version__: str = "2.803.3"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.45.0 2.803.3 0.0.3 syllable-sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
syllable_sdk/utils/__init__.py
CHANGED
|
@@ -11,10 +11,7 @@ _T = TypeVar("_T")
|
|
|
11
11
|
|
|
12
12
|
async def run_sync_in_thread(func: Callable[..., _T], *args) -> _T:
|
|
13
13
|
"""Run a synchronous function in a thread pool to avoid blocking the event loop."""
|
|
14
|
-
|
|
15
|
-
return await asyncio.to_thread(func, *args)
|
|
16
|
-
loop = asyncio.get_event_loop()
|
|
17
|
-
return await loop.run_in_executor(None, func, *args)
|
|
14
|
+
return await asyncio.to_thread(func, *args)
|
|
18
15
|
|
|
19
16
|
|
|
20
17
|
if TYPE_CHECKING:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syllable-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.45.0
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Syllable
|
|
6
|
-
Requires-Python: >=3.
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
8
8
|
Classifier: Programming Language :: Python :: 3.10
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -125,7 +125,7 @@ It's also possible to write a standalone Python script without needing to set up
|
|
|
125
125
|
```python
|
|
126
126
|
#!/usr/bin/env -S uv run --script
|
|
127
127
|
# /// script
|
|
128
|
-
# requires-python = ">=3.
|
|
128
|
+
# requires-python = ">=3.10"
|
|
129
129
|
# dependencies = [
|
|
130
130
|
# "syllable-sdk",
|
|
131
131
|
# ]
|
|
@@ -3,7 +3,7 @@ syllable_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU
|
|
|
3
3
|
syllable_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
syllable_sdk/_hooks/sdkhooks.py,sha256=aRu2TMpxilLKDrG6EIy6uQd6IrBH7kaHOoVkd7GIcus,2562
|
|
5
5
|
syllable_sdk/_hooks/types.py,sha256=uwJkn18g4_rLZhVtKdE6Ed5YcCjGWSqVgN9-PWqV7Ho,3053
|
|
6
|
-
syllable_sdk/_version.py,sha256=
|
|
6
|
+
syllable_sdk/_version.py,sha256=YrsVQZUHoig4KjFLMM4hWw1q0ocRy8uGAY-eZFh-Vlk,468
|
|
7
7
|
syllable_sdk/agents.py,sha256=5X4d7rstMwWCUTmNH76eX3dTFLGvUtO5fb36hYtXo9w,47252
|
|
8
8
|
syllable_sdk/basesdk.py,sha256=En7_FiFHEJ8ZUYbjR5GLzLY-d6vzsPMfwuLERpMEvYc,12727
|
|
9
9
|
syllable_sdk/batches.py,sha256=jAL-2jfZqhuVGWd6gG7hzPk7mG_X1M1AuLsO14QRzM8,73743
|
|
@@ -421,7 +421,7 @@ syllable_sdk/twilio.py,sha256=suZO3rlKl-mBqqF68EzqwJ2WcSfH0qwRzP1DQUCZdNc,24300
|
|
|
421
421
|
syllable_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
422
422
|
syllable_sdk/types/basemodel.py,sha256=MULDVywSVxR0lo8h5wMnXnkBFXLK5DXmBKD1eXAVKgE,2879
|
|
423
423
|
syllable_sdk/users.py,sha256=jm_1MGY6X5_3GL9c15F3_E_YaA_A-fzlBS3heKssX74,53983
|
|
424
|
-
syllable_sdk/utils/__init__.py,sha256=
|
|
424
|
+
syllable_sdk/utils/__init__.py,sha256=lsoc0OCeySEab00QRlyVVIGcpSt5AZdN0KICBpWeB80,6026
|
|
425
425
|
syllable_sdk/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
|
|
426
426
|
syllable_sdk/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
427
427
|
syllable_sdk/utils/enums.py,sha256=wAgjjw7USk6IRpN2UJE5Sl8rfmEFiRwyrwMhhznnDIc,5147
|
|
@@ -441,6 +441,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
|
|
|
441
441
|
syllable_sdk/v1.py,sha256=dA67n3aRVr-3VqqW4sFcIAqPRpEwsQqStv9EfJ-EPCc,53980
|
|
442
442
|
syllable_sdk/voice_groups.py,sha256=ChjGJJW1n7IHfiSenzi-HiIa51jHFjUAO5L5yzNMPFY,48944
|
|
443
443
|
syllable_sdk/workflows.py,sha256=vXaEaw29tOeMqUIBiJqN9S2XW4B3NP_ZDoUPMVDh_Ck,65385
|
|
444
|
-
syllable_sdk-0.
|
|
445
|
-
syllable_sdk-0.
|
|
446
|
-
syllable_sdk-0.
|
|
444
|
+
syllable_sdk-0.45.0.dist-info/METADATA,sha256=OguqB7auX0ldNRH0ZkjDAuLpGJkr5OCwKycYYo0bvPQ,50233
|
|
445
|
+
syllable_sdk-0.45.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
446
|
+
syllable_sdk-0.45.0.dist-info/RECORD,,
|
|
File without changes
|