murf 1.2.2__py3-none-any.whl → 2.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.

Potentially problematic release.


This version of murf might be problematic. Click here for more details.

Files changed (57) hide show
  1. murf/__init__.py +31 -1
  2. murf/auth/client.py +11 -9
  3. murf/base_client.py +3 -20
  4. murf/client.py +9 -8
  5. murf/core/__init__.py +4 -0
  6. murf/core/client_wrapper.py +18 -17
  7. murf/core/unchecked_base_model.py +305 -0
  8. murf/dubbing/jobs/client.py +37 -31
  9. murf/dubbing/languages/client.py +25 -21
  10. murf/dubbing/projects/client.py +37 -31
  11. murf/dubbing_client.py +9 -8
  12. murf/environment.py +10 -3
  13. murf/stream_input/__init__.py +5 -0
  14. murf/stream_input/types/__init__.py +6 -0
  15. murf/stream_input/types/receive_message.py +7 -0
  16. murf/stream_input/types/send_message.py +9 -0
  17. murf/text/client.py +15 -13
  18. murf/text_to_speech/client.py +43 -37
  19. murf/types/__init__.py +34 -0
  20. murf/types/api_job_response.py +2 -2
  21. murf/types/api_project_response.py +2 -2
  22. murf/types/api_voice.py +2 -2
  23. murf/types/audio_output.py +27 -0
  24. murf/types/auth_token_response.py +2 -2
  25. murf/types/character_count.py +2 -2
  26. murf/types/clear_context.py +20 -0
  27. murf/types/dub_api_detail_response.py +2 -2
  28. murf/types/dub_job_status_response.py +2 -2
  29. murf/types/final_output.py +27 -0
  30. murf/types/form_data_content_disposition.py +2 -2
  31. murf/types/generate_speech_response.py +2 -2
  32. murf/types/group_api_project_response.py +2 -2
  33. murf/types/locale_response.py +2 -2
  34. murf/types/metadata.py +2 -2
  35. murf/types/murf_api_translation_response.py +2 -2
  36. murf/types/pronunciation_detail.py +2 -2
  37. murf/types/send_text.py +32 -0
  38. murf/types/set_advanced_settings.py +20 -0
  39. murf/types/set_voice_configuration.py +20 -0
  40. murf/types/set_voice_configuration_voice_config.py +57 -0
  41. murf/types/set_voice_configuration_voice_config_pronunciation_dictionary_value.py +30 -0
  42. murf/types/set_voice_configuration_voice_config_pronunciation_dictionary_value_type.py +7 -0
  43. murf/types/source_locale_response.py +2 -2
  44. murf/types/speech_to_speech_response.py +2 -2
  45. murf/types/style_details.py +2 -2
  46. murf/types/translation.py +2 -2
  47. murf/types/tts_request_both_payload.py +29 -0
  48. murf/types/tts_request_both_payload_voice_config.py +44 -0
  49. murf/types/tts_request_both_payload_voice_config_pronunciation_dictionary.py +22 -0
  50. murf/types/tts_request_both_payload_voice_config_pronunciation_dictionary_guess.py +20 -0
  51. murf/types/word_duration_response.py +2 -2
  52. murf/voice_changer/client.py +17 -15
  53. {murf-1.2.2.dist-info → murf-2.0.0.dist-info}/METADATA +1 -1
  54. murf-2.0.0.dist-info/RECORD +98 -0
  55. murf-1.2.2.dist-info/RECORD +0 -80
  56. {murf-1.2.2.dist-info → murf-2.0.0.dist-info}/LICENSE +0 -0
  57. {murf-1.2.2.dist-info → murf-2.0.0.dist-info}/WHEEL +0 -0
@@ -5,7 +5,7 @@ from ..core.client_wrapper import SyncClientWrapper
5
5
  from .. import core
6
6
  from ..core.request_options import RequestOptions
7
7
  from ..types.speech_to_speech_response import SpeechToSpeechResponse
8
- from ..core.pydantic_utilities import parse_obj_as
8
+ from ..core.unchecked_base_model import construct_type
9
9
  from ..errors.bad_request_error import BadRequestError
10
10
  from ..errors.payment_required_error import PaymentRequiredError
11
11
  from ..errors.forbidden_error import ForbiddenError
@@ -109,7 +109,7 @@ class VoiceChangerClient:
109
109
  Higher values will add more variation in terms of Pause, Pitch, and Speed to the voice. Only available for Gen2 model.
110
110
 
111
111
  voice_id : typing.Optional[str]
112
- Use the GET /v1/speech/voices api to find supported voiceIds.
112
+ Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
113
113
 
114
114
  request_options : typing.Optional[RequestOptions]
115
115
  Request-specific configuration.
@@ -130,6 +130,7 @@ class VoiceChangerClient:
130
130
  """
131
131
  _response = self._client_wrapper.httpx_client.request(
132
132
  "v1/voice-changer/convert",
133
+ base_url=self._client_wrapper.get_environment().base,
133
134
  method="POST",
134
135
  data={
135
136
  "audio_duration": audio_duration,
@@ -160,7 +161,7 @@ class VoiceChangerClient:
160
161
  if 200 <= _response.status_code < 300:
161
162
  return typing.cast(
162
163
  SpeechToSpeechResponse,
163
- parse_obj_as(
164
+ construct_type(
164
165
  type_=SpeechToSpeechResponse, # type: ignore
165
166
  object_=_response.json(),
166
167
  ),
@@ -169,7 +170,7 @@ class VoiceChangerClient:
169
170
  raise BadRequestError(
170
171
  typing.cast(
171
172
  typing.Optional[typing.Any],
172
- parse_obj_as(
173
+ construct_type(
173
174
  type_=typing.Optional[typing.Any], # type: ignore
174
175
  object_=_response.json(),
175
176
  ),
@@ -179,7 +180,7 @@ class VoiceChangerClient:
179
180
  raise PaymentRequiredError(
180
181
  typing.cast(
181
182
  typing.Optional[typing.Any],
182
- parse_obj_as(
183
+ construct_type(
183
184
  type_=typing.Optional[typing.Any], # type: ignore
184
185
  object_=_response.json(),
185
186
  ),
@@ -189,7 +190,7 @@ class VoiceChangerClient:
189
190
  raise ForbiddenError(
190
191
  typing.cast(
191
192
  typing.Optional[typing.Any],
192
- parse_obj_as(
193
+ construct_type(
193
194
  type_=typing.Optional[typing.Any], # type: ignore
194
195
  object_=_response.json(),
195
196
  ),
@@ -199,7 +200,7 @@ class VoiceChangerClient:
199
200
  raise InternalServerError(
200
201
  typing.cast(
201
202
  typing.Optional[typing.Any],
202
- parse_obj_as(
203
+ construct_type(
203
204
  type_=typing.Optional[typing.Any], # type: ignore
204
205
  object_=_response.json(),
205
206
  ),
@@ -209,7 +210,7 @@ class VoiceChangerClient:
209
210
  raise ServiceUnavailableError(
210
211
  typing.cast(
211
212
  typing.Optional[typing.Any],
212
- parse_obj_as(
213
+ construct_type(
213
214
  type_=typing.Optional[typing.Any], # type: ignore
214
215
  object_=_response.json(),
215
216
  ),
@@ -311,7 +312,7 @@ class AsyncVoiceChangerClient:
311
312
  Higher values will add more variation in terms of Pause, Pitch, and Speed to the voice. Only available for Gen2 model.
312
313
 
313
314
  voice_id : typing.Optional[str]
314
- Use the GET /v1/speech/voices api to find supported voiceIds.
315
+ Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
315
316
 
316
317
  request_options : typing.Optional[RequestOptions]
317
318
  Request-specific configuration.
@@ -340,6 +341,7 @@ class AsyncVoiceChangerClient:
340
341
  """
341
342
  _response = await self._client_wrapper.httpx_client.request(
342
343
  "v1/voice-changer/convert",
344
+ base_url=self._client_wrapper.get_environment().base,
343
345
  method="POST",
344
346
  data={
345
347
  "audio_duration": audio_duration,
@@ -370,7 +372,7 @@ class AsyncVoiceChangerClient:
370
372
  if 200 <= _response.status_code < 300:
371
373
  return typing.cast(
372
374
  SpeechToSpeechResponse,
373
- parse_obj_as(
375
+ construct_type(
374
376
  type_=SpeechToSpeechResponse, # type: ignore
375
377
  object_=_response.json(),
376
378
  ),
@@ -379,7 +381,7 @@ class AsyncVoiceChangerClient:
379
381
  raise BadRequestError(
380
382
  typing.cast(
381
383
  typing.Optional[typing.Any],
382
- parse_obj_as(
384
+ construct_type(
383
385
  type_=typing.Optional[typing.Any], # type: ignore
384
386
  object_=_response.json(),
385
387
  ),
@@ -389,7 +391,7 @@ class AsyncVoiceChangerClient:
389
391
  raise PaymentRequiredError(
390
392
  typing.cast(
391
393
  typing.Optional[typing.Any],
392
- parse_obj_as(
394
+ construct_type(
393
395
  type_=typing.Optional[typing.Any], # type: ignore
394
396
  object_=_response.json(),
395
397
  ),
@@ -399,7 +401,7 @@ class AsyncVoiceChangerClient:
399
401
  raise ForbiddenError(
400
402
  typing.cast(
401
403
  typing.Optional[typing.Any],
402
- parse_obj_as(
404
+ construct_type(
403
405
  type_=typing.Optional[typing.Any], # type: ignore
404
406
  object_=_response.json(),
405
407
  ),
@@ -409,7 +411,7 @@ class AsyncVoiceChangerClient:
409
411
  raise InternalServerError(
410
412
  typing.cast(
411
413
  typing.Optional[typing.Any],
412
- parse_obj_as(
414
+ construct_type(
413
415
  type_=typing.Optional[typing.Any], # type: ignore
414
416
  object_=_response.json(),
415
417
  ),
@@ -419,7 +421,7 @@ class AsyncVoiceChangerClient:
419
421
  raise ServiceUnavailableError(
420
422
  typing.cast(
421
423
  typing.Optional[typing.Any],
422
- parse_obj_as(
424
+ construct_type(
423
425
  type_=typing.Optional[typing.Any], # type: ignore
424
426
  object_=_response.json(),
425
427
  ),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: murf
3
- Version: 1.2.2
3
+ Version: 2.0.0
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -0,0 +1,98 @@
1
+ murf/__init__.py,sha256=hx3-AXJM46eigpYNhxeQa3WocWHh_9i6ulX28MY98C0,3328
2
+ murf/auth/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
3
+ murf/auth/client.py,sha256=aJIq8Mj3jVv-KLAFSG_nP_VqQALEKe41O7Xc3tw5uUc,6270
4
+ murf/base_client.py,sha256=xEryUjqHJ5OHkwBklQdbBr_fucX-nroxc4-a6zG4hfU,5646
5
+ murf/client.py,sha256=xFAsGgZ9c5xKa7gctrO0P8ud112oQ8QpBpSy76mNv2U,4686
6
+ murf/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
7
+ murf/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
8
+ murf/core/client_wrapper.py,sha256=5wjb9KneatApu0vRRIZet-XEGn8IysBphebKQkzKaVc,2035
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/core/unchecked_base_model.py,sha256=zliEPgLnK9yQ1dZ0mHP6agQ7H0bTZk8AvX6VC1r9oPQ,10754
19
+ murf/dubbing/__init__.py,sha256=nyJUo0t4Z_4LyOGqEQIUwsKcOGDvYn9kQueQ27lwaos,427
20
+ murf/dubbing/client.py,sha256=MjhDQHdZdAnuSmlz-6O2uSIFpd12cG62KDdMdarPXXo,1164
21
+ murf/dubbing/jobs/__init__.py,sha256=tCnld9WPopucbecyb-MqLCmND-I8TZUOgNhlbsHjgIo,233
22
+ murf/dubbing/jobs/client.py,sha256=3GivX_8zcndkHU_CaKs0Y8Vs9OLpHF8edQdpTxILC0s,25446
23
+ murf/dubbing/jobs/types/__init__.py,sha256=AmEepTMwyEn2mMDgFB3RD--Xfw5EN7ppC-dLbMA-iQk,313
24
+ murf/dubbing/jobs/types/jobs_create_request_priority.py,sha256=Z_6ojVLfhFtvBk8d6xLBx55NeDb7dHW2SrTICjMLk3E,174
25
+ murf/dubbing/jobs/types/jobs_create_with_project_id_request_priority.py,sha256=G_wLjL3kUZLhr1Z7wP3DRiwtEMHsOgSUf_ZSlgJlrJw,187
26
+ murf/dubbing/languages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
+ murf/dubbing/languages/client.py,sha256=ST6nKG9cE5TWtIBqNOJxHhPRhFEYHhmCynyFKbOwEDY,13661
28
+ murf/dubbing/projects/__init__.py,sha256=fNaAsaAco0NlcwZdDcT8yD5Ihe9G6mOdGI5u_bQgtn4,169
29
+ murf/dubbing/projects/client.py,sha256=_5pLSE8mR_M5vEnGMmkZNuSzN3iFz68tUSUeJFs5O-g,23550
30
+ murf/dubbing/projects/types/__init__.py,sha256=JGWNZtycIzMF9Fkro47ZhMDtrHDK71jrbiulgVd8N4c,203
31
+ murf/dubbing/projects/types/api_create_project_request_dubbing_type.py,sha256=tcXNZRPd_7cYdkJYKekwmc2or9AAXGpf8kEXu31f094,177
32
+ murf/dubbing_client.py,sha256=6tHtRym3WKD-DVLJo24spLVpLq4IAo-MFTmLGg2aDWQ,4732
33
+ murf/environment.py,sha256=a-FdfZZpoG3eBN2S9PlMDxIstcpc1poywUw2_Opf5K8,386
34
+ murf/errors/__init__.py,sha256=Y88-JEjEvw-fav3aqMuQEKFf54uKkKUYELJ0yQNQ710,552
35
+ murf/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
36
+ murf/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
37
+ murf/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
38
+ murf/errors/payment_required_error.py,sha256=7xjVK_OFqWNU7L0BloP5ns1kavWIbC2XMfbBVgK6rr4,269
39
+ murf/errors/service_unavailable_error.py,sha256=aiWJkLwL3ZF8DUhnHA7DncgPR-gAA9Omj86XByHSVlg,272
40
+ murf/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
41
+ murf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ murf/stream_input/__init__.py,sha256=VvN8mm0LP4Ryp2xmyhJt_EnlMfs07eu-Oqs1ohUiP04,157
43
+ murf/stream_input/types/__init__.py,sha256=NzFX9bjNOKm_ZpICdGUkxaepmFfagtb_5pkdnuOGn_Y,192
44
+ murf/stream_input/types/receive_message.py,sha256=eczdgGeN-ak8vuuPcRdMT8gxL1Pt0N8oIL7EklOc-Iw,228
45
+ murf/stream_input/types/send_message.py,sha256=Z3uLTw7unhUT6-KKXG89ySApwhCi2TZxdXVGYqBYocQ,393
46
+ murf/text/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
+ murf/text/client.py,sha256=Ht3lES96uodzVeX1LGcrs1wzFMNppiDUKSB8rZz2xjw,9284
48
+ murf/text_to_speech/__init__.py,sha256=Xv0-uZoCGDrfYszMbB2sh5nsApPBrcmek6SDgljYfxA,167
49
+ murf/text_to_speech/client.py,sha256=RU9ChUJ01LvSmjCpfJJXLWbsytcoGsPYQw6-OEsrM2g,35885
50
+ murf/text_to_speech/types/__init__.py,sha256=Hq1g0iZQ8sHQVU32Pt6lEetGXKEUUntytBmIq4bVK0A,199
51
+ murf/text_to_speech/types/generate_speech_request_model_version.py,sha256=y0NvjvNgtPrNcywVnq11MjANl-hJ7m-S5M_Ik5NP7c8,173
52
+ murf/types/__init__.py,sha256=hTqVFETbcWoGlb0DRrSF1UFYKgQ_ATW44zVsTfhou0Q,3730
53
+ murf/types/api_job_response.py,sha256=mR227w0Yh4yFfNUeYz_wc4YFDNyqF_1j6maPwsNNtvM,1390
54
+ murf/types/api_job_response_dubbing_type.py,sha256=-tnqFfuSOXSZngLhHBLg0Dn_X4fP5XIGMsI1TewVxig,168
55
+ murf/types/api_job_response_priority.py,sha256=27xuE25oMRVKzRXc-CLv_mu7ADr_PRsvNDXa4aFbt-k,171
56
+ murf/types/api_project_response.py,sha256=TR22oIOv2UkpTJy2ywjWEOa2TQCHJlUPSaL8l5ZqT_Q,1149
57
+ murf/types/api_project_response_dubbing_type.py,sha256=ir-drn3sD8Qdbe6RWeJdPQyxx8hwSRV4U0Db22OGkw4,172
58
+ murf/types/api_voice.py,sha256=i0PFfX4gmIee3QQtQe6p5OJkYnoJ7GZiGb-tv4QsW40,1922
59
+ murf/types/api_voice_gender.py,sha256=d0HtLLsXDckaiNE3mb7wojzRi6YwqzFiEnqdNecfo-E,169
60
+ murf/types/audio_output.py,sha256=cICH1rrwyMEi-bJSN9zzFtiXwmHKdABu-eYIMhg5wkk,739
61
+ murf/types/auth_token_response.py,sha256=M_YRtWjWoRg3Dmj1RsykQHuhEFopUa8yz-MEAiaudWk,918
62
+ murf/types/character_count.py,sha256=9SML_j1y0mYub78CUCVrMD3m5aL2y4MLE_L20jS851Q,665
63
+ murf/types/clear_context.py,sha256=Sfa7sq_mk9jXaJpP-U5R6anA6h2w14EH2TKQdyP0G2A,579
64
+ murf/types/dub_api_detail_response.py,sha256=bsp9x30dl53Qvy7KJHp1MOwGcCitwyuNQy094DTfCDM,774
65
+ murf/types/dub_job_status_response.py,sha256=51QkNiQ6cziH-Uwf1x1h8ltMRreWIJ6-b1t4ZjVV1ko,1125
66
+ murf/types/final_output.py,sha256=-xmGLP7dOpt_57f8vCpD4xA7BQ77y5Ae9rHCJmsfq8w,799
67
+ murf/types/form_data_content_disposition.py,sha256=hVKzwOBdH6MA8gLAtypR0BmbAfj1a_K9sLNKo4cd7N0,1309
68
+ murf/types/generate_speech_response.py,sha256=oVMTE_VEygmQvz5Lj7s4OSuyePEbBpoRsOMg_O8GZwc,1635
69
+ murf/types/group_api_project_response.py,sha256=6jsknHQLFsxfRPFPjuSY7Og24n4FpRHBp66z8ksEfJ0,747
70
+ murf/types/locale_response.py,sha256=_-X19eFW9IW2jgPXjumkLhfge1BbE-VeQt56-JV9GKE,775
71
+ murf/types/locale_response_supports_item.py,sha256=yxGwpkzpeIfpG1KzygTHGjU1nK3U_plweHpxrbUWyT4,169
72
+ murf/types/metadata.py,sha256=uxL9756hDF6bAaaQsayGwD27_M21txnbTJOKqVot7NU,740
73
+ murf/types/murf_api_translation_response.py,sha256=FPo_9OqTOrKuMM1XmhLNcCpDczmQtyEs9PGVwsIVrLw,739
74
+ murf/types/pronunciation_detail.py,sha256=opX2Ei-AnDCbNmmbazn03qYwksnyQNsGW2_9-QFfT3M,939
75
+ murf/types/pronunciation_detail_type.py,sha256=ihRcpMJJBEZGo59TFZefg_tfl_LeU0wlOXfMjkUNmh0,164
76
+ murf/types/send_text.py,sha256=hBm-S-wCVY4K8tBnXan79cg1FplhbEmrn4vvD1dj-RU,881
77
+ murf/types/set_advanced_settings.py,sha256=Vtxll-WceTkuFr9174HHIfmI4UBevUUWQEXW0RgusFU,655
78
+ murf/types/set_voice_configuration.py,sha256=V7i0uxFtQvpSBYfnACGf3aRVH2K8I_qBpEyefGH-pv4,686
79
+ murf/types/set_voice_configuration_voice_config.py,sha256=HaZjj_a1gzzGZ2gE_-AroKK4ZAnF1j7vbVrpnMPfdmU,2068
80
+ murf/types/set_voice_configuration_voice_config_pronunciation_dictionary_value.py,sha256=_nbuPEmG_uYJpa61qarMHkSBA34usmlWSW0SuGV41ls,998
81
+ murf/types/set_voice_configuration_voice_config_pronunciation_dictionary_value_type.py,sha256=jvEyySD-2h0ATMa3-dtEL-nP5ZO-5Cy5l7AveYrLiS8,211
82
+ murf/types/source_locale_response.py,sha256=by1x3riQX7jeu7umwgmLHDcxVNl3yxOjVaDp0yeDDkw,585
83
+ murf/types/speech_to_speech_response.py,sha256=xRSgNhNbYdxKjGxBubrBvwPVc0ZSP12rov83hLrILZk,1449
84
+ murf/types/style_details.py,sha256=uPbR7KT3E9YJSc3Jc9B4eF4fg1M_HXDhdDCWUIrlEqY,801
85
+ murf/types/translation.py,sha256=7miGdshyflHjJGFMfD1v2OfD64__k-Rl-Bzw-8cnVg8,636
86
+ murf/types/tts_request_both_payload.py,sha256=_XMmolTkl95WJ1qzkWZ7l6JzixX1SBXkl4YiQi9W5bM,887
87
+ murf/types/tts_request_both_payload_voice_config.py,sha256=zUpd3BtZ7T6C8fCbAo1xXmikFbR_WWjwm8IztFtIkqE,1358
88
+ murf/types/tts_request_both_payload_voice_config_pronunciation_dictionary.py,sha256=FJLKUU7fP0BYuaPkOlUimHufNiZGVm_FxH3ekFJT-rs,834
89
+ murf/types/tts_request_both_payload_voice_config_pronunciation_dictionary_guess.py,sha256=EWQOiUUB_CCEWCMSYSkb5VoIRU1tZFzOFOhLjsKyalY,676
90
+ murf/types/word_duration_response.py,sha256=ZQPwu0Yb0yfBzg16Q_UNiWAVUpQ7lMOIWNBuuxrNy0s,1510
91
+ murf/utils.py,sha256=VzRmn8e3fbDVYW7IlfGrcPwgu44PA2kBYRcZ7ZVNYUk,1259
92
+ murf/version.py,sha256=pVGisqquGqFs8v4SJPE2o540FaaDKHWfOikWf4-9KKk,71
93
+ murf/voice_changer/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
94
+ murf/voice_changer/client.py,sha256=bpIX0Ap5LsOJ7zUX246awNP68eaTLDKorplGVheTyBI,17848
95
+ murf-2.0.0.dist-info/LICENSE,sha256=SxRdfCVAmnkiSsVHJHhXmRX0yqidcRlBMjy-R2GZFdM,1066
96
+ murf-2.0.0.dist-info/METADATA,sha256=V28Cj1chDtvmqsmNxtrV5jNHGif7JnWUJBA2jFpxdSs,6848
97
+ murf-2.0.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
98
+ murf-2.0.0.dist-info/RECORD,,
@@ -1,80 +0,0 @@
1
- murf/__init__.py,sha256=TkqLNGuu7H0kvP3wYhLf_vfOo7deH6P422JMZ66A9HA,2205
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=lkptrkFgokPx7QXBQt767h71N3uwtFIVYsXqOPgIjFc,6343
5
- murf/client.py,sha256=sE8Ob-pPnAIpHwxyvCpYOgheNsjH5DwD_ei__8il5Yo,4109
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=k_TouDAcLZCyKftrsc4JPYYH6RZpjpFZaHKyZILwqzM,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/dubbing/__init__.py,sha256=nyJUo0t4Z_4LyOGqEQIUwsKcOGDvYn9kQueQ27lwaos,427
19
- murf/dubbing/client.py,sha256=MjhDQHdZdAnuSmlz-6O2uSIFpd12cG62KDdMdarPXXo,1164
20
- murf/dubbing/jobs/__init__.py,sha256=tCnld9WPopucbecyb-MqLCmND-I8TZUOgNhlbsHjgIo,233
21
- murf/dubbing/jobs/client.py,sha256=aX3lzPqwNILXF3E9ytbDg7GyhvkQeaoMfE9iWQ3sPCY,24986
22
- murf/dubbing/jobs/types/__init__.py,sha256=AmEepTMwyEn2mMDgFB3RD--Xfw5EN7ppC-dLbMA-iQk,313
23
- murf/dubbing/jobs/types/jobs_create_request_priority.py,sha256=Z_6ojVLfhFtvBk8d6xLBx55NeDb7dHW2SrTICjMLk3E,174
24
- murf/dubbing/jobs/types/jobs_create_with_project_id_request_priority.py,sha256=G_wLjL3kUZLhr1Z7wP3DRiwtEMHsOgSUf_ZSlgJlrJw,187
25
- murf/dubbing/languages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
26
- murf/dubbing/languages/client.py,sha256=4rwg8mzD44fkzoh-6kxAxKad5rSdmhtr6msHzoInVL4,13353
27
- murf/dubbing/projects/__init__.py,sha256=fNaAsaAco0NlcwZdDcT8yD5Ihe9G6mOdGI5u_bQgtn4,169
28
- murf/dubbing/projects/client.py,sha256=f3qscfYlyZnVSxNqhactECe79KUflCr0qeb5vZ4TMcs,23090
29
- murf/dubbing/projects/types/__init__.py,sha256=JGWNZtycIzMF9Fkro47ZhMDtrHDK71jrbiulgVd8N4c,203
30
- murf/dubbing/projects/types/api_create_project_request_dubbing_type.py,sha256=tcXNZRPd_7cYdkJYKekwmc2or9AAXGpf8kEXu31f094,177
31
- murf/dubbing_client.py,sha256=BRdYiR4cdrpx27wGPdVI9aKtErLJBerwQJk-TJNjJPo,4147
32
- murf/environment.py,sha256=UJ2CmhHv79L09Ug4ygReh0SKr4sS0OUcAXja9u_lQ4U,149
33
- murf/errors/__init__.py,sha256=Y88-JEjEvw-fav3aqMuQEKFf54uKkKUYELJ0yQNQ710,552
34
- murf/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
35
- murf/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
36
- murf/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
37
- murf/errors/payment_required_error.py,sha256=7xjVK_OFqWNU7L0BloP5ns1kavWIbC2XMfbBVgK6rr4,269
38
- murf/errors/service_unavailable_error.py,sha256=aiWJkLwL3ZF8DUhnHA7DncgPR-gAA9Omj86XByHSVlg,272
39
- murf/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
40
- murf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- murf/text/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
42
- murf/text/client.py,sha256=Aownk0rY8RvIREiksxl1jPYLhNXyMjyZ1vJaQcaXD9I,9124
43
- murf/text_to_speech/__init__.py,sha256=Xv0-uZoCGDrfYszMbB2sh5nsApPBrcmek6SDgljYfxA,167
44
- murf/text_to_speech/client.py,sha256=vKFONdvh6vduo0LzVuH7A7o85MhjVpEInwMxazbnImE,35025
45
- murf/text_to_speech/types/__init__.py,sha256=Hq1g0iZQ8sHQVU32Pt6lEetGXKEUUntytBmIq4bVK0A,199
46
- murf/text_to_speech/types/generate_speech_request_model_version.py,sha256=y0NvjvNgtPrNcywVnq11MjANl-hJ7m-S5M_Ik5NP7c8,173
47
- murf/types/__init__.py,sha256=Nvq_pfebZdLeBJ4Rupwdov89hlkMNfJyq5E0q1NLCdY,2127
48
- murf/types/api_job_response.py,sha256=-0sasAgDmTzyn_7KVpYcRC5pCzm-QowtQNmrG6qpz6s,1388
49
- murf/types/api_job_response_dubbing_type.py,sha256=-tnqFfuSOXSZngLhHBLg0Dn_X4fP5XIGMsI1TewVxig,168
50
- murf/types/api_job_response_priority.py,sha256=27xuE25oMRVKzRXc-CLv_mu7ADr_PRsvNDXa4aFbt-k,171
51
- murf/types/api_project_response.py,sha256=7PGbi1Bmk-okT6U8t0UI7VfVGoERNL0tWOLEkJsDJao,1147
52
- murf/types/api_project_response_dubbing_type.py,sha256=ir-drn3sD8Qdbe6RWeJdPQyxx8hwSRV4U0Db22OGkw4,172
53
- murf/types/api_voice.py,sha256=q56eq_iz_NnSCDWzxRvsJKFOU2Tje8vCrXHg1AmKf4U,1920
54
- murf/types/api_voice_gender.py,sha256=d0HtLLsXDckaiNE3mb7wojzRi6YwqzFiEnqdNecfo-E,169
55
- murf/types/auth_token_response.py,sha256=kc04BEfbgsTMuEnxGhs1hI3-4gtrOTOaKpR16Mg9Cc8,916
56
- murf/types/character_count.py,sha256=lDD1Bslx0bhewrJ7pYnTNx6ykmBnXoWxTuV-J6r19kQ,663
57
- murf/types/dub_api_detail_response.py,sha256=7Rgy1ygNuWGVPmnEUoQYh3B7owBrlpFKZ_PvvUZf-YA,772
58
- murf/types/dub_job_status_response.py,sha256=TNqCSOnO3kANySbyynNxQDYXpb_ewPp-meD1TFtV6NE,1123
59
- murf/types/form_data_content_disposition.py,sha256=kecApnkfJhGUcM9lP1Yc7khTrA5C-uMzaLeUH3TfQBI,1307
60
- murf/types/generate_speech_response.py,sha256=4ShyktWhUAik8nD4E97Vh-7LELJgqKc4wbnOfNBmMdE,1633
61
- murf/types/group_api_project_response.py,sha256=cgKB9I02vDH_t1rYOSM5z6p25CzDOZrZjASQpt-HWyA,745
62
- murf/types/locale_response.py,sha256=2ix9RuJ_-Qw95XWTeTP-15a6kFTROReEQS0vn3Da2uU,773
63
- murf/types/locale_response_supports_item.py,sha256=yxGwpkzpeIfpG1KzygTHGjU1nK3U_plweHpxrbUWyT4,169
64
- murf/types/metadata.py,sha256=jROjd-DtKykNMS5L4iGVyKdoa-5F-2HeoqYI138QkLw,738
65
- murf/types/murf_api_translation_response.py,sha256=N-iRMtFGZSMvEOxTzgYcktgyo74EO9IDCI32QuwnLiw,737
66
- murf/types/pronunciation_detail.py,sha256=wm8asAQsYkL6O7QIhFl9tDEvo23r50-BUWamzdybHcg,937
67
- murf/types/pronunciation_detail_type.py,sha256=ihRcpMJJBEZGo59TFZefg_tfl_LeU0wlOXfMjkUNmh0,164
68
- murf/types/source_locale_response.py,sha256=hCIpMkpAKfCy2jqMCCLLqNnC_E0h-gDRyATnmDHNR2g,583
69
- murf/types/speech_to_speech_response.py,sha256=NMKRfNHzUFQ4bpCUQ_L7BfFpnwQ8AEMrJ7WYbh4GPzg,1447
70
- murf/types/style_details.py,sha256=Gh2ev6dv5K0uZU1ZRViWfITpJ5r7LmQvwV3PcxF1RKE,799
71
- murf/types/translation.py,sha256=t1CFv_3PlsUgprZEb4EBLdy48StDgCfZ5qwc-rE8gVw,634
72
- murf/types/word_duration_response.py,sha256=bdW6yDcIWrMgAuQqp-MWseHpfLPexim-BWzHYOIArSs,1508
73
- murf/utils.py,sha256=VzRmn8e3fbDVYW7IlfGrcPwgu44PA2kBYRcZ7ZVNYUk,1259
74
- murf/version.py,sha256=pVGisqquGqFs8v4SJPE2o540FaaDKHWfOikWf4-9KKk,71
75
- murf/voice_changer/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
76
- murf/voice_changer/client.py,sha256=5665S18ZvySKE1EbYhWAAKXHM9DhNCF3bG5fVNqJY3I,17490
77
- murf-1.2.2.dist-info/LICENSE,sha256=SxRdfCVAmnkiSsVHJHhXmRX0yqidcRlBMjy-R2GZFdM,1066
78
- murf-1.2.2.dist-info/METADATA,sha256=saNXgU2X25QGch66OSitCuP7M--S9UmSW36_XnvYTBs,6848
79
- murf-1.2.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
80
- murf-1.2.2.dist-info/RECORD,,
File without changes
File without changes