typecast-python 0.3.1__tar.gz → 0.3.2__tar.gz
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.
- {typecast_python-0.3.1 → typecast_python-0.3.2}/.gitignore +20 -1
- {typecast_python-0.3.1 → typecast_python-0.3.2}/PKG-INFO +2 -2
- {typecast_python-0.3.1 → typecast_python-0.3.2}/pyproject.toml +2 -2
- {typecast_python-0.3.1 → typecast_python-0.3.2}/LICENSE +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/README.md +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/__init__.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/_voice_clone.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/async_client.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/client.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/conf.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/exceptions.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/models/__init__.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/models/error.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/models/subscription.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/models/tts.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/models/voices.py +0 -0
- {typecast_python-0.3.1 → typecast_python-0.3.2}/src/typecast/utils.py +0 -0
|
@@ -89,6 +89,12 @@ Makefile
|
|
|
89
89
|
!typecast-java/Makefile
|
|
90
90
|
!typecast-rust/Makefile
|
|
91
91
|
!typecast-kotlin/Makefile
|
|
92
|
+
!typecast-dart/Makefile
|
|
93
|
+
!typecast-dart/lib/
|
|
94
|
+
!typecast-dart/lib/**
|
|
95
|
+
!typecast-ruby/Makefile
|
|
96
|
+
!typecast-ruby/lib/
|
|
97
|
+
!typecast-ruby/lib/**
|
|
92
98
|
*.cmake
|
|
93
99
|
|
|
94
100
|
# Compiled objects
|
|
@@ -233,6 +239,13 @@ out/
|
|
|
233
239
|
Cargo.lock
|
|
234
240
|
*~
|
|
235
241
|
|
|
242
|
+
# ----------------
|
|
243
|
+
# Ruby
|
|
244
|
+
# ----------------
|
|
245
|
+
.bundle/
|
|
246
|
+
Gemfile.lock
|
|
247
|
+
vendor/bundle/
|
|
248
|
+
|
|
236
249
|
# ----------------
|
|
237
250
|
# Swift
|
|
238
251
|
# ----------------
|
|
@@ -282,6 +295,12 @@ fastlane/test_output
|
|
|
282
295
|
# Code Injection
|
|
283
296
|
iOSInjectionProject/
|
|
284
297
|
|
|
298
|
+
# ----------------
|
|
299
|
+
# Dart
|
|
300
|
+
# ----------------
|
|
301
|
+
.dart_tool/
|
|
302
|
+
pubspec.lock
|
|
303
|
+
|
|
285
304
|
# ----------------
|
|
286
305
|
# IDE / Editor
|
|
287
306
|
# ----------------
|
|
@@ -326,4 +345,4 @@ logs/
|
|
|
326
345
|
# ----------------
|
|
327
346
|
.npmrc
|
|
328
347
|
openapi.json
|
|
329
|
-
PR.md
|
|
348
|
+
PR.md
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: typecast-python
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Official Typecast Python SDK - Convert text to lifelike speech using AI-powered voices
|
|
5
5
|
Project-URL: Homepage, https://typecast.ai
|
|
6
6
|
Project-URL: Documentation, https://typecast.ai/docs/overview
|
|
@@ -223,7 +223,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
223
223
|
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
|
|
224
224
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
225
225
|
Requires-Python: >=3.11
|
|
226
|
-
Requires-Dist: aiohttp>=3.
|
|
226
|
+
Requires-Dist: aiohttp>=3.14.0
|
|
227
227
|
Requires-Dist: pydantic>=2.0.0
|
|
228
228
|
Requires-Dist: requests>=2.28.0
|
|
229
229
|
Requires-Dist: typing-extensions>=4.0.0
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "typecast-python"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Official Typecast Python SDK - Convert text to lifelike speech using AI-powered voices"
|
|
9
9
|
authors = [
|
|
10
10
|
{name = "Neosapience", email = "help@typecast.ai"}
|
|
@@ -29,7 +29,7 @@ classifiers = [
|
|
|
29
29
|
"Operating System :: OS Independent",
|
|
30
30
|
]
|
|
31
31
|
dependencies = [
|
|
32
|
-
"aiohttp>=3.
|
|
32
|
+
"aiohttp>=3.14.0",
|
|
33
33
|
"requests>=2.28.0",
|
|
34
34
|
"pydantic>=2.0.0",
|
|
35
35
|
"typing-extensions>=4.0.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|