murf 1.0.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.
Files changed (43) hide show
  1. murf/__init__.py +49 -0
  2. murf/auth/__init__.py +2 -0
  3. murf/auth/client.py +175 -0
  4. murf/base_client.py +144 -0
  5. murf/client.py +118 -0
  6. murf/core/__init__.py +47 -0
  7. murf/core/api_error.py +15 -0
  8. murf/core/client_wrapper.py +65 -0
  9. murf/core/datetime_utils.py +28 -0
  10. murf/core/file.py +67 -0
  11. murf/core/http_client.py +499 -0
  12. murf/core/jsonable_encoder.py +101 -0
  13. murf/core/pydantic_utilities.py +296 -0
  14. murf/core/query_encoder.py +58 -0
  15. murf/core/remove_none_from_dict.py +11 -0
  16. murf/core/request_options.py +35 -0
  17. murf/core/serialization.py +272 -0
  18. murf/environment.py +7 -0
  19. murf/errors/__init__.py +17 -0
  20. murf/errors/bad_request_error.py +9 -0
  21. murf/errors/forbidden_error.py +9 -0
  22. murf/errors/internal_server_error.py +9 -0
  23. murf/errors/payment_required_error.py +9 -0
  24. murf/errors/service_unavailable_error.py +9 -0
  25. murf/errors/unauthorized_error.py +9 -0
  26. murf/py.typed +0 -0
  27. murf/text_to_speech/__init__.py +5 -0
  28. murf/text_to_speech/client.py +592 -0
  29. murf/text_to_speech/types/__init__.py +5 -0
  30. murf/text_to_speech/types/generate_speech_request_model_version.py +5 -0
  31. murf/types/__init__.py +21 -0
  32. murf/types/api_voice.py +49 -0
  33. murf/types/api_voice_gender.py +5 -0
  34. murf/types/auth_token_response.py +28 -0
  35. murf/types/generate_speech_response.py +44 -0
  36. murf/types/pronunciation_detail.py +29 -0
  37. murf/types/pronunciation_detail_type.py +5 -0
  38. murf/types/style_details.py +24 -0
  39. murf/types/word_duration.py +30 -0
  40. murf/version.py +3 -0
  41. murf-1.0.0.dist-info/METADATA +169 -0
  42. murf-1.0.0.dist-info/RECORD +43 -0
  43. murf-1.0.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ GenerateSpeechRequestModelVersion = typing.Union[typing.Literal["GEN1", "GEN2"], typing.Any]
murf/types/__init__.py ADDED
@@ -0,0 +1,21 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from .api_voice import ApiVoice
4
+ from .api_voice_gender import ApiVoiceGender
5
+ from .auth_token_response import AuthTokenResponse
6
+ from .generate_speech_response import GenerateSpeechResponse
7
+ from .pronunciation_detail import PronunciationDetail
8
+ from .pronunciation_detail_type import PronunciationDetailType
9
+ from .style_details import StyleDetails
10
+ from .word_duration import WordDuration
11
+
12
+ __all__ = [
13
+ "ApiVoice",
14
+ "ApiVoiceGender",
15
+ "AuthTokenResponse",
16
+ "GenerateSpeechResponse",
17
+ "PronunciationDetail",
18
+ "PronunciationDetailType",
19
+ "StyleDetails",
20
+ "WordDuration",
21
+ ]
@@ -0,0 +1,49 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ import pydantic
6
+ import typing_extensions
7
+ from ..core.serialization import FieldMetadata
8
+ from .api_voice_gender import ApiVoiceGender
9
+ from .style_details import StyleDetails
10
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
11
+
12
+
13
+ class ApiVoice(UniversalBaseModel):
14
+ accent: typing.Optional[str] = pydantic.Field(default=None)
15
+ """
16
+ This field has been deprecated. Please refer to 'supportedLocales.detail' instead.
17
+ """
18
+
19
+ available_styles: typing_extensions.Annotated[
20
+ typing.Optional[typing.List[str]], FieldMetadata(alias="availableStyles")
21
+ ] = pydantic.Field(default=None)
22
+ """
23
+ This field has been deprecated. Please refer to 'supportedLocales.availableStyles' instead.
24
+ """
25
+
26
+ description: typing.Optional[str] = None
27
+ display_language: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="displayLanguage")] = (
28
+ pydantic.Field(default=None)
29
+ )
30
+ """
31
+ This field has been deprecated. Please refer to 'supportedLocales.detail' instead.
32
+ """
33
+
34
+ display_name: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="displayName")] = None
35
+ gender: typing.Optional[ApiVoiceGender] = None
36
+ locale: typing.Optional[str] = None
37
+ supported_locales: typing_extensions.Annotated[
38
+ typing.Optional[typing.Dict[str, StyleDetails]], FieldMetadata(alias="supportedLocales")
39
+ ] = None
40
+ voice_id: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="voiceId")] = None
41
+
42
+ if IS_PYDANTIC_V2:
43
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
44
+ else:
45
+
46
+ class Config:
47
+ frozen = True
48
+ smart_union = True
49
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ ApiVoiceGender = typing.Union[typing.Literal["Male", "Female", "NonBinary"], typing.Any]
@@ -0,0 +1,28 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing_extensions
5
+ import typing
6
+ from ..core.serialization import FieldMetadata
7
+ import pydantic
8
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
+
10
+
11
+ class AuthTokenResponse(UniversalBaseModel):
12
+ expiry_in_epoch_millis: typing_extensions.Annotated[
13
+ typing.Optional[int], FieldMetadata(alias="expiryInEpochMillis")
14
+ ] = pydantic.Field(default=None)
15
+ """
16
+ The timestamp at which the generated token will expire - in Unix time.
17
+ """
18
+
19
+ token: typing.Optional[str] = None
20
+
21
+ if IS_PYDANTIC_V2:
22
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
23
+ else:
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ extra = pydantic.Extra.allow
@@ -0,0 +1,44 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing_extensions
5
+ import typing
6
+ from ..core.serialization import FieldMetadata
7
+ import pydantic
8
+ from .word_duration import WordDuration
9
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
+
11
+
12
+ class GenerateSpeechResponse(UniversalBaseModel):
13
+ audio_file: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="audioFile")] = None
14
+ audio_length_in_seconds: typing_extensions.Annotated[
15
+ typing.Optional[float], FieldMetadata(alias="audioLengthInSeconds")
16
+ ] = None
17
+ consumed_character_count: typing_extensions.Annotated[
18
+ typing.Optional[int], FieldMetadata(alias="consumedCharacterCount")
19
+ ] = pydantic.Field(default=None)
20
+ """
21
+ Number of characters consumed so far in the current billing cycle.
22
+ """
23
+
24
+ encoded_audio: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="encodedAudio")] = None
25
+ remaining_character_count: typing_extensions.Annotated[
26
+ typing.Optional[int], FieldMetadata(alias="remainingCharacterCount")
27
+ ] = pydantic.Field(default=None)
28
+ """
29
+ Remaining number of characters available for synthesis in the current billing cycle.
30
+ """
31
+
32
+ warning: typing.Optional[str] = None
33
+ word_durations: typing_extensions.Annotated[
34
+ typing.Optional[typing.List[WordDuration]], FieldMetadata(alias="wordDurations")
35
+ ] = None
36
+
37
+ if IS_PYDANTIC_V2:
38
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
39
+ else:
40
+
41
+ class Config:
42
+ frozen = True
43
+ smart_union = True
44
+ extra = pydantic.Extra.allow
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ from .pronunciation_detail_type import PronunciationDetailType
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+ import pydantic
8
+
9
+
10
+ class PronunciationDetail(UniversalBaseModel):
11
+ """
12
+ An object used to define custom pronunciations.
13
+
14
+ Example 1: {"live":{"type": "IPA", "pronunciation": "laɪv"}}.
15
+
16
+ Example 2: {"2022":{"type": "SAY_AS", "pronunciation": "twenty twenty two"}}
17
+ """
18
+
19
+ pronunciation: typing.Optional[str] = None
20
+ type: typing.Optional[PronunciationDetailType] = None
21
+
22
+ if IS_PYDANTIC_V2:
23
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
24
+ else:
25
+
26
+ class Config:
27
+ frozen = True
28
+ smart_union = True
29
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ PronunciationDetailType = typing.Union[typing.Literal["IPA", "SAY_AS"], typing.Any]
@@ -0,0 +1,24 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing_extensions
5
+ import typing
6
+ from ..core.serialization import FieldMetadata
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
+ import pydantic
9
+
10
+
11
+ class StyleDetails(UniversalBaseModel):
12
+ available_styles: typing_extensions.Annotated[
13
+ typing.Optional[typing.List[str]], FieldMetadata(alias="availableStyles")
14
+ ] = None
15
+ detail: typing.Optional[str] = None
16
+
17
+ if IS_PYDANTIC_V2:
18
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
19
+ else:
20
+
21
+ class Config:
22
+ frozen = True
23
+ smart_union = True
24
+ extra = pydantic.Extra.allow
@@ -0,0 +1,30 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing_extensions
5
+ import typing
6
+ from ..core.serialization import FieldMetadata
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
+ import pydantic
9
+
10
+
11
+ class WordDuration(UniversalBaseModel):
12
+ end_ms: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="endMs")] = None
13
+ pitch_scale_maximum: typing_extensions.Annotated[
14
+ typing.Optional[float], FieldMetadata(alias="pitchScaleMaximum")
15
+ ] = None
16
+ pitch_scale_minimum: typing_extensions.Annotated[
17
+ typing.Optional[float], FieldMetadata(alias="pitchScaleMinimum")
18
+ ] = None
19
+ source_word_index: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="sourceWordIndex")] = None
20
+ start_ms: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="startMs")] = None
21
+ word: typing.Optional[str] = None
22
+
23
+ if IS_PYDANTIC_V2:
24
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
25
+ else:
26
+
27
+ class Config:
28
+ frozen = True
29
+ smart_union = True
30
+ extra = pydantic.Extra.allow
murf/version.py ADDED
@@ -0,0 +1,3 @@
1
+ from importlib import metadata
2
+
3
+ __version__ = metadata.version("murf")
@@ -0,0 +1,169 @@
1
+ Metadata-Version: 2.1
2
+ Name: murf
3
+ Version: 1.0.0
4
+ Summary:
5
+ Requires-Python: >=3.8,<4.0
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Operating System :: POSIX
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Dist: httpx (>=0.21.2)
22
+ Requires-Dist: pydantic (>=1.9.2)
23
+ Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
24
+ Requires-Dist: typing_extensions (>=4.0.0)
25
+ Description-Content-Type: text/markdown
26
+
27
+ # Murf Python Library
28
+
29
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fmurf-ai%2Fmurf-python-sdk)
30
+ [![pypi](https://img.shields.io/pypi/v/murf)](https://pypi.python.org/pypi/murf)
31
+
32
+ The Murf Python library provides convenient access to the Murf API from Python.
33
+
34
+ ## Installation
35
+
36
+ ```sh
37
+ pip install murf
38
+ ```
39
+
40
+ ## Reference
41
+
42
+ A full reference for this library is available [here](./reference.md).
43
+
44
+ ## Usage
45
+
46
+ Instantiate and use the client with the following:
47
+
48
+ ```python
49
+ from murf import Murf
50
+
51
+ client = Murf(
52
+ api_key="YOUR_API_KEY",
53
+ )
54
+ client.text_to_speech.generate(
55
+ text="And off they went. Gently walking into the sunset, with not a single care in the world",
56
+ variation=5,
57
+ voice_id="en-US-julia",
58
+ )
59
+ ```
60
+
61
+ ## Async Client
62
+
63
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API.
64
+
65
+ ```python
66
+ import asyncio
67
+
68
+ from murf import AsyncMurf
69
+
70
+ client = AsyncMurf(
71
+ api_key="YOUR_API_KEY",
72
+ )
73
+
74
+
75
+ async def main() -> None:
76
+ await client.text_to_speech.generate(
77
+ text="And off they went. Gently walking into the sunset, with not a single care in the world",
78
+ variation=5,
79
+ voice_id="en-US-julia",
80
+ )
81
+
82
+
83
+ asyncio.run(main())
84
+ ```
85
+
86
+ ## Exception Handling
87
+
88
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
89
+ will be thrown.
90
+
91
+ ```python
92
+ from murf.core.api_error import ApiError
93
+
94
+ try:
95
+ client.text_to_speech.generate(...)
96
+ except ApiError as e:
97
+ print(e.status_code)
98
+ print(e.body)
99
+ ```
100
+
101
+ ## Advanced
102
+
103
+ ### Retries
104
+
105
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
106
+ as the request is deemed retriable and the number of retry attempts has not grown larger than the configured
107
+ retry limit (default: 2).
108
+
109
+ A request is deemed retriable when any of the following HTTP status codes is returned:
110
+
111
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
112
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
113
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
114
+
115
+ Use the `max_retries` request option to configure this behavior.
116
+
117
+ ```python
118
+ client.text_to_speech.generate(..., request_options={
119
+ "max_retries": 1
120
+ })
121
+ ```
122
+
123
+ ### Timeouts
124
+
125
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
126
+
127
+ ```python
128
+
129
+ from murf import Murf
130
+
131
+ client = Murf(
132
+ ...,
133
+ timeout=20.0,
134
+ )
135
+
136
+
137
+ # Override timeout for a specific method
138
+ client.text_to_speech.generate(..., request_options={
139
+ "timeout_in_seconds": 1
140
+ })
141
+ ```
142
+
143
+ ### Custom Client
144
+
145
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
146
+ and transports.
147
+ ```python
148
+ import httpx
149
+ from murf import Murf
150
+
151
+ client = Murf(
152
+ ...,
153
+ httpx_client=httpx.Client(
154
+ proxies="http://my.test.proxy.example.com",
155
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
156
+ ),
157
+ )
158
+ ```
159
+
160
+ ## Contributing
161
+
162
+ While we value open-source contributions to this SDK, this library is generated programmatically.
163
+ Additions made directly to this library would have to be moved over to our generation code,
164
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
165
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
166
+ an issue first to discuss with us!
167
+
168
+ On the other hand, contributions to the README are always very welcome!
169
+
@@ -0,0 +1,43 @@
1
+ murf/__init__.py,sha256=FelCH6IXvOIQMPhoZH297uTV_qNkFQTIm5rs9BAsJJA,1146
2
+ murf/auth/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
3
+ murf/auth/client.py,sha256=mXUOPNju_oGpemo5yb-psqdru7b409R-smTw9heBh54,6118
4
+ murf/base_client.py,sha256=sKhRFLjh1g85yRlj2PMAfHnjI60WrZmMdO7CIusrjOY,5597
5
+ murf/client.py,sha256=yTZ56rACaAx6xdMTToRh6dm2woBFwfk35YeYc8jpLb4,4023
6
+ murf/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
7
+ murf/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
8
+ murf/core/client_wrapper.py,sha256=SR7jfBJL7E-6grEQkA87jFkUNP4DyXUaraslBjedJik,1995
9
+ murf/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
10
+ murf/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
11
+ murf/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
12
+ murf/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
13
+ murf/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
14
+ murf/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
15
+ murf/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
16
+ murf/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
17
+ murf/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
18
+ murf/environment.py,sha256=UJ2CmhHv79L09Ug4ygReh0SKr4sS0OUcAXja9u_lQ4U,149
19
+ murf/errors/__init__.py,sha256=Y88-JEjEvw-fav3aqMuQEKFf54uKkKUYELJ0yQNQ710,552
20
+ murf/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
21
+ murf/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
22
+ murf/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
23
+ murf/errors/payment_required_error.py,sha256=7xjVK_OFqWNU7L0BloP5ns1kavWIbC2XMfbBVgK6rr4,269
24
+ murf/errors/service_unavailable_error.py,sha256=aiWJkLwL3ZF8DUhnHA7DncgPR-gAA9Omj86XByHSVlg,272
25
+ murf/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
26
+ murf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ murf/text_to_speech/__init__.py,sha256=Xv0-uZoCGDrfYszMbB2sh5nsApPBrcmek6SDgljYfxA,167
28
+ murf/text_to_speech/client.py,sha256=OiOPwUpWJHUbHoT0WEKPTd_a9PGJhXT83W3zRXnpBGs,22731
29
+ murf/text_to_speech/types/__init__.py,sha256=Hq1g0iZQ8sHQVU32Pt6lEetGXKEUUntytBmIq4bVK0A,199
30
+ murf/text_to_speech/types/generate_speech_request_model_version.py,sha256=y0NvjvNgtPrNcywVnq11MjANl-hJ7m-S5M_Ik5NP7c8,173
31
+ murf/types/__init__.py,sha256=ZiZ2GFpQiOSZZ8EKYfeJF7grIYcCo6EYnnkPeijkbsU,657
32
+ murf/types/api_voice.py,sha256=q56eq_iz_NnSCDWzxRvsJKFOU2Tje8vCrXHg1AmKf4U,1920
33
+ murf/types/api_voice_gender.py,sha256=d0HtLLsXDckaiNE3mb7wojzRi6YwqzFiEnqdNecfo-E,169
34
+ murf/types/auth_token_response.py,sha256=kc04BEfbgsTMuEnxGhs1hI3-4gtrOTOaKpR16Mg9Cc8,916
35
+ murf/types/generate_speech_response.py,sha256=Ogcal0BKGW0m6kEuZIf7_k_wnEpyHFHJED8HmIzuWsU,1762
36
+ murf/types/pronunciation_detail.py,sha256=wm8asAQsYkL6O7QIhFl9tDEvo23r50-BUWamzdybHcg,937
37
+ murf/types/pronunciation_detail_type.py,sha256=ihRcpMJJBEZGo59TFZefg_tfl_LeU0wlOXfMjkUNmh0,164
38
+ murf/types/style_details.py,sha256=Gh2ev6dv5K0uZU1ZRViWfITpJ5r7LmQvwV3PcxF1RKE,799
39
+ murf/types/word_duration.py,sha256=RY29DhDLNnqg42Xt0vF0nq-qoLjXzCz_eWHbL5qvTjE,1253
40
+ murf/version.py,sha256=pVGisqquGqFs8v4SJPE2o540FaaDKHWfOikWf4-9KKk,71
41
+ murf-1.0.0.dist-info/METADATA,sha256=uo8PjJ6rOV1z92o5jrMcS4Psyx8PPH-lwvAFy648d5Y,4673
42
+ murf-1.0.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
43
+ murf-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.6.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any