spitch 1.33.0__py3-none-any.whl → 1.35.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.
Potentially problematic release.
This version of spitch might be problematic. Click here for more details.
- spitch/__init__.py +3 -1
- spitch/_base_client.py +12 -12
- spitch/_client.py +33 -24
- spitch/_compat.py +47 -47
- spitch/_models.py +51 -45
- spitch/_qs.py +7 -7
- spitch/_types.py +53 -12
- spitch/_utils/__init__.py +9 -2
- spitch/_utils/_compat.py +45 -0
- spitch/_utils/_datetime_parse.py +136 -0
- spitch/_utils/_transform.py +13 -3
- spitch/_utils/_typing.py +6 -1
- spitch/_utils/_utils.py +4 -5
- spitch/_version.py +1 -1
- spitch/pagination.py +50 -0
- spitch/resources/__init__.py +14 -0
- spitch/resources/files.py +580 -0
- spitch/resources/speech.py +17 -17
- spitch/resources/text.py +5 -5
- spitch/types/__init__.py +7 -0
- spitch/types/file_delete_response.py +11 -0
- spitch/types/file_download_params.py +11 -0
- spitch/types/file_get_response.py +24 -0
- spitch/types/file_list_params.py +16 -0
- spitch/types/file_list_response.py +24 -0
- spitch/types/file_upload_params.py +13 -0
- spitch/types/file_upload_response.py +24 -0
- {spitch-1.33.0.dist-info → spitch-1.35.0.dist-info}/METADATA +10 -3
- spitch-1.35.0.dist-info/RECORD +52 -0
- spitch-1.33.0.dist-info/RECORD +0 -41
- {spitch-1.33.0.dist-info → spitch-1.35.0.dist-info}/WHEEL +0 -0
- {spitch-1.33.0.dist-info → spitch-1.35.0.dist-info}/licenses/LICENSE +0 -0
spitch/resources/text.py
CHANGED
|
@@ -7,7 +7,7 @@ from typing_extensions import Literal
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ..types import text_tone_mark_params, text_translate_params
|
|
10
|
-
from .._types import
|
|
10
|
+
from .._types import Body, Query, Headers, NotGiven, not_given
|
|
11
11
|
from .._utils import maybe_transform, async_maybe_transform
|
|
12
12
|
from .._compat import cached_property
|
|
13
13
|
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
@@ -54,7 +54,7 @@ class TextResource(SyncAPIResource):
|
|
|
54
54
|
extra_headers: Headers | None = None,
|
|
55
55
|
extra_query: Query | None = None,
|
|
56
56
|
extra_body: Body | None = None,
|
|
57
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
57
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
58
58
|
) -> TextToneMarkResponse:
|
|
59
59
|
"""
|
|
60
60
|
Tone Mark
|
|
@@ -94,7 +94,7 @@ class TextResource(SyncAPIResource):
|
|
|
94
94
|
extra_headers: Headers | None = None,
|
|
95
95
|
extra_query: Query | None = None,
|
|
96
96
|
extra_body: Body | None = None,
|
|
97
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
97
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
98
98
|
) -> TextTranslateResponse:
|
|
99
99
|
"""
|
|
100
100
|
Translate
|
|
@@ -155,7 +155,7 @@ class AsyncTextResource(AsyncAPIResource):
|
|
|
155
155
|
extra_headers: Headers | None = None,
|
|
156
156
|
extra_query: Query | None = None,
|
|
157
157
|
extra_body: Body | None = None,
|
|
158
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
158
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
159
159
|
) -> TextToneMarkResponse:
|
|
160
160
|
"""
|
|
161
161
|
Tone Mark
|
|
@@ -195,7 +195,7 @@ class AsyncTextResource(AsyncAPIResource):
|
|
|
195
195
|
extra_headers: Headers | None = None,
|
|
196
196
|
extra_query: Query | None = None,
|
|
197
197
|
extra_body: Body | None = None,
|
|
198
|
-
timeout: float | httpx.Timeout | None | NotGiven =
|
|
198
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
199
199
|
) -> TextTranslateResponse:
|
|
200
200
|
"""
|
|
201
201
|
Translate
|
spitch/types/__init__.py
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from .file_list_params import FileListParams as FileListParams
|
|
6
|
+
from .file_get_response import FileGetResponse as FileGetResponse
|
|
7
|
+
from .file_list_response import FileListResponse as FileListResponse
|
|
8
|
+
from .file_upload_params import FileUploadParams as FileUploadParams
|
|
9
|
+
from .file_delete_response import FileDeleteResponse as FileDeleteResponse
|
|
10
|
+
from .file_download_params import FileDownloadParams as FileDownloadParams
|
|
11
|
+
from .file_upload_response import FileUploadResponse as FileUploadResponse
|
|
5
12
|
from .text_tone_mark_params import TextToneMarkParams as TextToneMarkParams
|
|
6
13
|
from .text_translate_params import TextTranslateParams as TextTranslateParams
|
|
7
14
|
from .speech_generate_params import SpeechGenerateParams as SpeechGenerateParams
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from .._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["FileDeleteResponse"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class FileDeleteResponse(BaseModel):
|
|
11
|
+
status: Optional[bool] = None
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["FileDownloadParams"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class FileDownloadParams(TypedDict, total=False):
|
|
11
|
+
ttl: int
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["FileGetResponse"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FileGetResponse(BaseModel):
|
|
12
|
+
category: Optional[str] = None
|
|
13
|
+
|
|
14
|
+
content_type: Optional[str] = None
|
|
15
|
+
|
|
16
|
+
created_at: datetime
|
|
17
|
+
|
|
18
|
+
file_id: str
|
|
19
|
+
|
|
20
|
+
original_name: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
size_bytes: Optional[int] = None
|
|
23
|
+
|
|
24
|
+
status: str
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import Literal, TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["FileListParams"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FileListParams(TypedDict, total=False):
|
|
12
|
+
cursor: Optional[str]
|
|
13
|
+
|
|
14
|
+
limit: int
|
|
15
|
+
|
|
16
|
+
status: Optional[Literal["uploading", "ready"]]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["FileListResponse"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FileListResponse(BaseModel):
|
|
12
|
+
category: Optional[str] = None
|
|
13
|
+
|
|
14
|
+
content_type: Optional[str] = None
|
|
15
|
+
|
|
16
|
+
created_at: datetime
|
|
17
|
+
|
|
18
|
+
file_id: str
|
|
19
|
+
|
|
20
|
+
original_name: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
size_bytes: Optional[int] = None
|
|
23
|
+
|
|
24
|
+
status: str
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Required, TypedDict
|
|
6
|
+
|
|
7
|
+
from .._types import FileTypes
|
|
8
|
+
|
|
9
|
+
__all__ = ["FileUploadParams"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class FileUploadParams(TypedDict, total=False):
|
|
13
|
+
file: Required[FileTypes]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["FileUploadResponse"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FileUploadResponse(BaseModel):
|
|
12
|
+
category: Optional[str] = None
|
|
13
|
+
|
|
14
|
+
content_type: Optional[str] = None
|
|
15
|
+
|
|
16
|
+
created_at: datetime
|
|
17
|
+
|
|
18
|
+
file_id: str
|
|
19
|
+
|
|
20
|
+
original_name: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
size_bytes: Optional[int] = None
|
|
23
|
+
|
|
24
|
+
status: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: spitch
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.35.0
|
|
4
4
|
Summary: The official Python library for the spitch API
|
|
5
5
|
Project-URL: Homepage, https://github.com/spi-tch/spitch-python
|
|
6
6
|
Project-URL: Repository, https://github.com/spi-tch/spitch-python
|
|
@@ -61,9 +61,12 @@ pip install spitch
|
|
|
61
61
|
The full API of this library can be found in [api.md](https://github.com/spi-tch/spitch-python/tree/main/api.md).
|
|
62
62
|
|
|
63
63
|
```python
|
|
64
|
+
import os
|
|
64
65
|
from spitch import Spitch
|
|
65
66
|
|
|
66
|
-
client = Spitch(
|
|
67
|
+
client = Spitch(
|
|
68
|
+
api_key=os.environ.get("SPITCH_API_KEY"), # This is the default and can be omitted
|
|
69
|
+
)
|
|
67
70
|
|
|
68
71
|
response = client.speech.generate(
|
|
69
72
|
language="yo",
|
|
@@ -82,10 +85,13 @@ so that your API Key is not stored in source control.
|
|
|
82
85
|
Simply import `AsyncSpitch` instead of `Spitch` and use `await` with each API call:
|
|
83
86
|
|
|
84
87
|
```python
|
|
88
|
+
import os
|
|
85
89
|
import asyncio
|
|
86
90
|
from spitch import AsyncSpitch
|
|
87
91
|
|
|
88
|
-
client = AsyncSpitch(
|
|
92
|
+
client = AsyncSpitch(
|
|
93
|
+
api_key=os.environ.get("SPITCH_API_KEY"), # This is the default and can be omitted
|
|
94
|
+
)
|
|
89
95
|
|
|
90
96
|
|
|
91
97
|
async def main() -> None:
|
|
@@ -122,6 +128,7 @@ from spitch import AsyncSpitch
|
|
|
122
128
|
|
|
123
129
|
async def main() -> None:
|
|
124
130
|
async with AsyncSpitch(
|
|
131
|
+
api_key="My API Key",
|
|
125
132
|
http_client=DefaultAioHttpClient(),
|
|
126
133
|
) as client:
|
|
127
134
|
response = await client.speech.generate(
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
spitch/__init__.py,sha256=JS1xuX1VDVdq2-EkwlKH3h19hltmtZQZDCMig55YgDw,2606
|
|
2
|
+
spitch/_base_client.py,sha256=zj7tZVDyWwN3QLO30HljeRZzptVtxvJ01-vPTzDlPVQ,67176
|
|
3
|
+
spitch/_client.py,sha256=Ptl5A9zAoBWtAK7CrIFZkSPD3NvYASfZteHOZlqLKeg,15870
|
|
4
|
+
spitch/_compat.py,sha256=LPDXpBxBq8haInbzeO9ldLv_0wZotEcrEtXCAJaZjLg,6589
|
|
5
|
+
spitch/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
|
+
spitch/_exceptions.py,sha256=xsQtKJTiIdz2X1bQDQFZcSW7WBofLazdQm9nMCyPEVM,3220
|
|
7
|
+
spitch/_files.py,sha256=PoVmzgMIaWGfUgEPaDtFolxtpEHXsmENhH4lXlaGSoU,3613
|
|
8
|
+
spitch/_models.py,sha256=kkNo-_GumPv1RtfJyswa2vUOS9aFvx7b8u1zwrq_oCY,30274
|
|
9
|
+
spitch/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
10
|
+
spitch/_resource.py,sha256=TLFPcOOmtxZOQLh3XCNPB_BdrQpp0MIYoKoH52aRAu8,1100
|
|
11
|
+
spitch/_response.py,sha256=-1LLK1wjPW3Hcro9NXjf_SnPRArU1ozdctNIStvxbWo,28690
|
|
12
|
+
spitch/_streaming.py,sha256=5SpId2EIfF8Ee8UUYmJxqgHUGP1ZdHCUHhHCdNJREFA,10100
|
|
13
|
+
spitch/_types.py,sha256=oa5CdZaglGw0wrxxpdWxeoliiTfNpce300esw52GnGk,7260
|
|
14
|
+
spitch/_version.py,sha256=t6_RdzsrXk-y9ws9-twz6HlrSkLuggPqQH5GPnlxrjY,159
|
|
15
|
+
spitch/pagination.py,sha256=XQaAXcd1OtYzc7zqwCJLQVqFMkC0W-1-0njeSyxT88A,1312
|
|
16
|
+
spitch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
spitch/_utils/__init__.py,sha256=WhaZJLzT8oCtvdIvbs8gyd6emLYa4usodcqgcpFiciU,2259
|
|
18
|
+
spitch/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
19
|
+
spitch/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
20
|
+
spitch/_utils/_logs.py,sha256=ApRyYK_WgZfEr_ygBUBXWMlTgeMr2tdNOGlH8jE4oJc,774
|
|
21
|
+
spitch/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
22
|
+
spitch/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
23
|
+
spitch/_utils/_resources_proxy.py,sha256=O0A5203gv-9Tg2PzRAYDPjXvJg_FQoaN41auzUUY8NM,589
|
|
24
|
+
spitch/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
25
|
+
spitch/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
26
|
+
spitch/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
27
|
+
spitch/_utils/_typing.py,sha256=RCxAvYzuEtYsURpRlnfcWi7jSOpli7zWiWiljTVjVOE,4123
|
|
28
|
+
spitch/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
29
|
+
spitch/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
30
|
+
spitch/resources/__init__.py,sha256=oUfkZqMUtVuaZj1l1YuWwDDcfCTFMs89K1-DNgM89VY,1413
|
|
31
|
+
spitch/resources/files.py,sha256=TJ4Ein1VnhdwJ8Os2cXpk8OCTUvpRZr6sag3t4FeGaY,21643
|
|
32
|
+
spitch/resources/speech.py,sha256=otyxlpbyBvhPRTlkprMjDj_AX380kIESqWUGzsuyung,13174
|
|
33
|
+
spitch/resources/text.py,sha256=smNj_XowNScuhECm7NVgDT9ctUpAziiiv--dWSmCMz0,9680
|
|
34
|
+
spitch/types/__init__.py,sha256=eZN_mYevOAVF2WZ89dhngG_YlZ8JQEHgi93rrR2XLNs,1196
|
|
35
|
+
spitch/types/file_delete_response.py,sha256=r4OwDVrG4BGSEdqYyr7iPpaPzon5pm5Wx61KIRZk1zY,255
|
|
36
|
+
spitch/types/file_download_params.py,sha256=tCiwTeSSbPuniZXdiOQll7Bdc2enBp9yJD-D9SpeEqg,262
|
|
37
|
+
spitch/types/file_get_response.py,sha256=vfKo8y1AnfI8WkG4aIEGEmvx4hASBoS0YJ0QerM0G9M,460
|
|
38
|
+
spitch/types/file_list_params.py,sha256=FrWZhMUC38sGkBtdQKateTyStVuMOz90x5AHtkoZnzk,373
|
|
39
|
+
spitch/types/file_list_response.py,sha256=XVKUhsHoAI4cx99FndC-_qWSAlH9xNBUwe9mitl6qqE,462
|
|
40
|
+
spitch/types/file_upload_params.py,sha256=5LSsvz7ptuELm5MosWotXpgsBf-Tz_ox1ys9HLx-Sts,317
|
|
41
|
+
spitch/types/file_upload_response.py,sha256=g8N4NRKn6KdAbXkH6sn0WNPblG6NHdNdwILzTOnEg8E,466
|
|
42
|
+
spitch/types/speech_generate_params.py,sha256=m5FQnPfVxcikB5UJTn-2WjttOP5tJ8BMO0LbGPktMe0,939
|
|
43
|
+
spitch/types/speech_transcribe_params.py,sha256=g-hyQWfiuMbwAuX7YUSwb-j6GKITRc6xcpX0d7mor1Y,604
|
|
44
|
+
spitch/types/speech_transcribe_response.py,sha256=SjqMDTT_VPvN8H7P_be33vlhRBSiLhehTIrNrYOMeIk,415
|
|
45
|
+
spitch/types/text_tone_mark_params.py,sha256=MEnWzcSjPT_Z_8Mio96LgwYbx2BngG5By-MoeSt0Sms,355
|
|
46
|
+
spitch/types/text_tone_mark_response.py,sha256=AtLA2N7tzhxzuTYxS3PwJfPgjGQxIlgTZmTzIUdxKMA,231
|
|
47
|
+
spitch/types/text_translate_params.py,sha256=skEeG7oTZUSl_gugnqL4Mb7HE_pEFhKNygZPTvci2hA,416
|
|
48
|
+
spitch/types/text_translate_response.py,sha256=oehUy3S8jyHTLUFhHTV9LtVhkPGxSasENXEPoK4F6-M,233
|
|
49
|
+
spitch-1.35.0.dist-info/METADATA,sha256=f7MShjjaKaGzwEYTZhu07ldJcOmJRIAKjQGiLpaeOAo,14264
|
|
50
|
+
spitch-1.35.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
51
|
+
spitch-1.35.0.dist-info/licenses/LICENSE,sha256=C0lDWY-no8IxmnqzQA9BA7Z8jeh_bogVPfeWSgeDDcc,11336
|
|
52
|
+
spitch-1.35.0.dist-info/RECORD,,
|
spitch-1.33.0.dist-info/RECORD
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
spitch/__init__.py,sha256=sQOgCAf6E5lLXjLxqutfq2FtM-qUuiad1OJ9dd5SIic,2560
|
|
2
|
-
spitch/_base_client.py,sha256=cxA_HOlsFL-GCV5en3woq4oArccJuwWzStBOLLSeEvU,67164
|
|
3
|
-
spitch/_client.py,sha256=edWlodXy44ArTu9KY7M_zXYKMhs66gptWUqSuMwN0SI,15438
|
|
4
|
-
spitch/_compat.py,sha256=fQkXUY7reJc8m_yguMWSjHBfO8lNzw4wOAxtkhP9d1Q,6607
|
|
5
|
-
spitch/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
|
-
spitch/_exceptions.py,sha256=xsQtKJTiIdz2X1bQDQFZcSW7WBofLazdQm9nMCyPEVM,3220
|
|
7
|
-
spitch/_files.py,sha256=PoVmzgMIaWGfUgEPaDtFolxtpEHXsmENhH4lXlaGSoU,3613
|
|
8
|
-
spitch/_models.py,sha256=xZcpLpLUiguvwNSYxIHwN3oa2gsbk1Nua06MayCY7eQ,29832
|
|
9
|
-
spitch/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
|
10
|
-
spitch/_resource.py,sha256=TLFPcOOmtxZOQLh3XCNPB_BdrQpp0MIYoKoH52aRAu8,1100
|
|
11
|
-
spitch/_response.py,sha256=-1LLK1wjPW3Hcro9NXjf_SnPRArU1ozdctNIStvxbWo,28690
|
|
12
|
-
spitch/_streaming.py,sha256=5SpId2EIfF8Ee8UUYmJxqgHUGP1ZdHCUHhHCdNJREFA,10100
|
|
13
|
-
spitch/_types.py,sha256=lccvqVi8E6-4SKt0rn1e9XXNePb0WwdDc10sPVSCygI,6221
|
|
14
|
-
spitch/_version.py,sha256=a7JHvqQhjp9-r2hqpy8ujWYHWPMeLK_9Ou4jmlf3DyY,159
|
|
15
|
-
spitch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
spitch/_utils/__init__.py,sha256=k266EatJr88V8Zseb7xUimTlCeno9SynRfLwadHP1b4,2016
|
|
17
|
-
spitch/_utils/_logs.py,sha256=ApRyYK_WgZfEr_ygBUBXWMlTgeMr2tdNOGlH8jE4oJc,774
|
|
18
|
-
spitch/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
19
|
-
spitch/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
20
|
-
spitch/_utils/_resources_proxy.py,sha256=O0A5203gv-9Tg2PzRAYDPjXvJg_FQoaN41auzUUY8NM,589
|
|
21
|
-
spitch/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
22
|
-
spitch/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
23
|
-
spitch/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
|
24
|
-
spitch/_utils/_typing.py,sha256=9UuSEnmE7dgm1SG45Mt-ga1sBhnvZHpq3f2dXbhW1NM,3939
|
|
25
|
-
spitch/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
26
|
-
spitch/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
27
|
-
spitch/resources/__init__.py,sha256=KT6rAvIlWHQk9QdM4Jp8ABziKILaBrrtiO7LCB5Wa5E,976
|
|
28
|
-
spitch/resources/speech.py,sha256=3MFk65IFJkjQ4uhA8OJff9yHoT3ghcbt6uLA77H0a-s,13270
|
|
29
|
-
spitch/resources/text.py,sha256=wWIE7uyvthKfhkOtoodTBDv_0s6YgWgAqxwICquDSyo,9680
|
|
30
|
-
spitch/types/__init__.py,sha256=xBZbzXwV3WlBdawp4Mb4IqoQG4VfaLbi-4FMqPbwqlE,704
|
|
31
|
-
spitch/types/speech_generate_params.py,sha256=m5FQnPfVxcikB5UJTn-2WjttOP5tJ8BMO0LbGPktMe0,939
|
|
32
|
-
spitch/types/speech_transcribe_params.py,sha256=g-hyQWfiuMbwAuX7YUSwb-j6GKITRc6xcpX0d7mor1Y,604
|
|
33
|
-
spitch/types/speech_transcribe_response.py,sha256=SjqMDTT_VPvN8H7P_be33vlhRBSiLhehTIrNrYOMeIk,415
|
|
34
|
-
spitch/types/text_tone_mark_params.py,sha256=MEnWzcSjPT_Z_8Mio96LgwYbx2BngG5By-MoeSt0Sms,355
|
|
35
|
-
spitch/types/text_tone_mark_response.py,sha256=AtLA2N7tzhxzuTYxS3PwJfPgjGQxIlgTZmTzIUdxKMA,231
|
|
36
|
-
spitch/types/text_translate_params.py,sha256=skEeG7oTZUSl_gugnqL4Mb7HE_pEFhKNygZPTvci2hA,416
|
|
37
|
-
spitch/types/text_translate_response.py,sha256=oehUy3S8jyHTLUFhHTV9LtVhkPGxSasENXEPoK4F6-M,233
|
|
38
|
-
spitch-1.33.0.dist-info/METADATA,sha256=XJ1Zu93BU3seH2t-9l5KNWzFkdbM06BFpe9KnNn7woo,14036
|
|
39
|
-
spitch-1.33.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
40
|
-
spitch-1.33.0.dist-info/licenses/LICENSE,sha256=C0lDWY-no8IxmnqzQA9BA7Z8jeh_bogVPfeWSgeDDcc,11336
|
|
41
|
-
spitch-1.33.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|