typecast-python 0.1.3__tar.gz → 0.1.6__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.1.6/.gitignore +318 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/PKG-INFO +234 -115
- typecast_python-0.1.6/README.md +313 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/pyproject.toml +4 -1
- typecast_python-0.1.6/src/typecast/__init__.py +46 -0
- typecast_python-0.1.6/src/typecast/async_client.py +238 -0
- typecast_python-0.1.6/src/typecast/client.py +208 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/exceptions.py +7 -0
- typecast_python-0.1.6/src/typecast/models/__init__.py +45 -0
- typecast_python-0.1.6/src/typecast/models/tts.py +152 -0
- typecast_python-0.1.6/src/typecast/models/voices.py +77 -0
- typecast_python-0.1.3/.gitignore +0 -57
- typecast_python-0.1.3/README.md +0 -194
- typecast_python-0.1.3/src/typecast/__init__.py +0 -25
- typecast_python-0.1.3/src/typecast/async_client.py +0 -105
- typecast_python-0.1.3/src/typecast/client.py +0 -87
- typecast_python-0.1.3/src/typecast/models/__init__.py +0 -15
- typecast_python-0.1.3/src/typecast/models/tts.py +0 -80
- typecast_python-0.1.3/src/typecast/models/voices.py +0 -9
- {typecast_python-0.1.3 → typecast_python-0.1.6}/LICENSE +0 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/conf.py +0 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/models/error.py +0 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/models/tts_wss.py +0 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/sse.py +0 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/utils.py +0 -0
- {typecast_python-0.1.3 → typecast_python-0.1.6}/src/typecast/websocket.py +0 -0
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
# ================================
|
|
2
|
+
# Typecast SDK Monorepo .gitignore
|
|
3
|
+
# ================================
|
|
4
|
+
|
|
5
|
+
# ----------------
|
|
6
|
+
# Environment
|
|
7
|
+
# ----------------
|
|
8
|
+
.env
|
|
9
|
+
.env.local
|
|
10
|
+
.env.*.local
|
|
11
|
+
*.env
|
|
12
|
+
!.env.example
|
|
13
|
+
|
|
14
|
+
# ----------------
|
|
15
|
+
# Node.js / JavaScript
|
|
16
|
+
# ----------------
|
|
17
|
+
node_modules/
|
|
18
|
+
# Note: package-lock.json is NOT ignored - required for npm ci in CI
|
|
19
|
+
yarn.lock
|
|
20
|
+
pnpm-lock.yaml
|
|
21
|
+
|
|
22
|
+
# Build outputs (JS)
|
|
23
|
+
lib/
|
|
24
|
+
dist/
|
|
25
|
+
build/
|
|
26
|
+
*.tsbuildinfo
|
|
27
|
+
|
|
28
|
+
# Test coverage
|
|
29
|
+
coverage/
|
|
30
|
+
|
|
31
|
+
# Optional npm cache
|
|
32
|
+
.npm
|
|
33
|
+
.eslintcache
|
|
34
|
+
|
|
35
|
+
# Logs (JS)
|
|
36
|
+
npm-debug.log*
|
|
37
|
+
yarn-debug.log*
|
|
38
|
+
yarn-error.log*
|
|
39
|
+
|
|
40
|
+
# ----------------
|
|
41
|
+
# Python
|
|
42
|
+
# ----------------
|
|
43
|
+
__pycache__/
|
|
44
|
+
*.py[cod]
|
|
45
|
+
*$py.class
|
|
46
|
+
*.so
|
|
47
|
+
.Python
|
|
48
|
+
develop-eggs/
|
|
49
|
+
downloads/
|
|
50
|
+
eggs/
|
|
51
|
+
.eggs/
|
|
52
|
+
lib64/
|
|
53
|
+
parts/
|
|
54
|
+
sdist/
|
|
55
|
+
var/
|
|
56
|
+
wheels/
|
|
57
|
+
*.egg-info/
|
|
58
|
+
.installed.cfg
|
|
59
|
+
*.egg
|
|
60
|
+
|
|
61
|
+
# Virtual environments
|
|
62
|
+
.venv
|
|
63
|
+
.test_venv
|
|
64
|
+
.ci_test_venv
|
|
65
|
+
env/
|
|
66
|
+
venv/
|
|
67
|
+
ENV/
|
|
68
|
+
|
|
69
|
+
# Testing (Python)
|
|
70
|
+
.coverage
|
|
71
|
+
htmlcov/
|
|
72
|
+
.pytest_cache/
|
|
73
|
+
.mypy_cache/
|
|
74
|
+
.ruff_cache/
|
|
75
|
+
|
|
76
|
+
# ----------------
|
|
77
|
+
# C / C++
|
|
78
|
+
# ----------------
|
|
79
|
+
# Build directories
|
|
80
|
+
[Bb]uild/
|
|
81
|
+
cmake-build-*/
|
|
82
|
+
CMakeFiles/
|
|
83
|
+
CMakeCache.txt
|
|
84
|
+
cmake_install.cmake
|
|
85
|
+
Makefile
|
|
86
|
+
*.cmake
|
|
87
|
+
|
|
88
|
+
# Compiled objects
|
|
89
|
+
*.o
|
|
90
|
+
*.obj
|
|
91
|
+
*.a
|
|
92
|
+
*.lib
|
|
93
|
+
|
|
94
|
+
# Executables
|
|
95
|
+
*.exe
|
|
96
|
+
*.out
|
|
97
|
+
|
|
98
|
+
# Libraries
|
|
99
|
+
*.dylib
|
|
100
|
+
|
|
101
|
+
# ----------------
|
|
102
|
+
# C# / .NET
|
|
103
|
+
# ----------------
|
|
104
|
+
[Dd]ebug/
|
|
105
|
+
[Dd]ebugPublic/
|
|
106
|
+
[Rr]elease/
|
|
107
|
+
[Rr]eleases/
|
|
108
|
+
x64/
|
|
109
|
+
x86/
|
|
110
|
+
[Ww][Ii][Nn]32/
|
|
111
|
+
[Aa][Rr][Mm]/
|
|
112
|
+
[Aa][Rr][Mm]64/
|
|
113
|
+
bld/
|
|
114
|
+
[Bb]in/
|
|
115
|
+
[Oo]bj/
|
|
116
|
+
[Ll]og/
|
|
117
|
+
[Ll]ogs/
|
|
118
|
+
|
|
119
|
+
# Visual Studio
|
|
120
|
+
.vs/
|
|
121
|
+
*.suo
|
|
122
|
+
*.user
|
|
123
|
+
*.userosscache
|
|
124
|
+
*.sln.docstates
|
|
125
|
+
|
|
126
|
+
# NuGet packages
|
|
127
|
+
*.nupkg
|
|
128
|
+
*.snupkg
|
|
129
|
+
packages/
|
|
130
|
+
*.nuget.props
|
|
131
|
+
*.nuget.targets
|
|
132
|
+
|
|
133
|
+
# Test results (.NET)
|
|
134
|
+
[Tt]est[Rr]esult*/
|
|
135
|
+
[Bb]uild[Ll]og.*
|
|
136
|
+
*.trx
|
|
137
|
+
*.coveragexml
|
|
138
|
+
coverage*.json
|
|
139
|
+
coverage*.xml
|
|
140
|
+
|
|
141
|
+
# NCrunch
|
|
142
|
+
*.ncrunchproject
|
|
143
|
+
*.ncrunchsolution
|
|
144
|
+
_NCrunch_*
|
|
145
|
+
|
|
146
|
+
# DotCover
|
|
147
|
+
*.dotCover
|
|
148
|
+
|
|
149
|
+
# BenchmarkDotNet
|
|
150
|
+
BenchmarkDotNet.Artifacts/
|
|
151
|
+
|
|
152
|
+
# Project specific
|
|
153
|
+
*.DotSettings.user
|
|
154
|
+
launchSettings.json
|
|
155
|
+
|
|
156
|
+
# ----------------
|
|
157
|
+
# Go
|
|
158
|
+
# ----------------
|
|
159
|
+
*.exe~
|
|
160
|
+
*.dll
|
|
161
|
+
*.test
|
|
162
|
+
go.work
|
|
163
|
+
go.work.sum
|
|
164
|
+
vendor/
|
|
165
|
+
test_output*
|
|
166
|
+
|
|
167
|
+
# ----------------
|
|
168
|
+
# Java
|
|
169
|
+
# ----------------
|
|
170
|
+
# Maven
|
|
171
|
+
target/
|
|
172
|
+
pom.xml.tag
|
|
173
|
+
pom.xml.releaseBackup
|
|
174
|
+
pom.xml.versionsBackup
|
|
175
|
+
pom.xml.next
|
|
176
|
+
release.properties
|
|
177
|
+
dependency-reduced-pom.xml
|
|
178
|
+
buildNumber.properties
|
|
179
|
+
.mvn/timing.properties
|
|
180
|
+
.mvn/wrapper/maven-wrapper.jar
|
|
181
|
+
|
|
182
|
+
# Compiled files
|
|
183
|
+
*.class
|
|
184
|
+
|
|
185
|
+
# Package files
|
|
186
|
+
*.jar
|
|
187
|
+
!**/gradle/wrapper/gradle-wrapper.jar
|
|
188
|
+
*.war
|
|
189
|
+
*.ear
|
|
190
|
+
*.zip
|
|
191
|
+
*.tar.gz
|
|
192
|
+
*.rar
|
|
193
|
+
|
|
194
|
+
# Eclipse
|
|
195
|
+
.classpath
|
|
196
|
+
.project
|
|
197
|
+
.settings/
|
|
198
|
+
|
|
199
|
+
# NetBeans
|
|
200
|
+
nbproject/private/
|
|
201
|
+
nbbuild/
|
|
202
|
+
nbdist/
|
|
203
|
+
.nb-gradle/
|
|
204
|
+
|
|
205
|
+
# JVM crash logs
|
|
206
|
+
hs_err_pid*
|
|
207
|
+
replay_pid*
|
|
208
|
+
|
|
209
|
+
# Test output (Java)
|
|
210
|
+
test-output/
|
|
211
|
+
surefire-reports/
|
|
212
|
+
failsafe-reports/
|
|
213
|
+
|
|
214
|
+
# ----------------
|
|
215
|
+
# Kotlin
|
|
216
|
+
# ----------------
|
|
217
|
+
# Gradle
|
|
218
|
+
.gradle/
|
|
219
|
+
|
|
220
|
+
# Kotlin compiled
|
|
221
|
+
out/
|
|
222
|
+
|
|
223
|
+
# ----------------
|
|
224
|
+
# Rust
|
|
225
|
+
# ----------------
|
|
226
|
+
/target/
|
|
227
|
+
Cargo.lock
|
|
228
|
+
*~
|
|
229
|
+
|
|
230
|
+
# ----------------
|
|
231
|
+
# Swift
|
|
232
|
+
# ----------------
|
|
233
|
+
# Xcode
|
|
234
|
+
*.xcodeproj
|
|
235
|
+
*.xcworkspace
|
|
236
|
+
xcuserdata/
|
|
237
|
+
DerivedData/
|
|
238
|
+
*.moved-aside
|
|
239
|
+
*.pbxuser
|
|
240
|
+
!default.pbxuser
|
|
241
|
+
*.mode1v3
|
|
242
|
+
!default.mode1v3
|
|
243
|
+
*.mode2v3
|
|
244
|
+
!default.mode2v3
|
|
245
|
+
*.perspectivev3
|
|
246
|
+
!default.perspectivev3
|
|
247
|
+
*.hmap
|
|
248
|
+
*.ipa
|
|
249
|
+
*.dSYM.zip
|
|
250
|
+
*.dSYM
|
|
251
|
+
|
|
252
|
+
# Swift Package Manager
|
|
253
|
+
.build/
|
|
254
|
+
.swiftpm/
|
|
255
|
+
Packages/
|
|
256
|
+
Package.resolved
|
|
257
|
+
|
|
258
|
+
# CocoaPods
|
|
259
|
+
Pods/
|
|
260
|
+
|
|
261
|
+
# Carthage
|
|
262
|
+
Carthage/Build/
|
|
263
|
+
Carthage/Checkouts
|
|
264
|
+
|
|
265
|
+
# Accio
|
|
266
|
+
Dependencies/
|
|
267
|
+
.accio/
|
|
268
|
+
|
|
269
|
+
# fastlane
|
|
270
|
+
fastlane/report.xml
|
|
271
|
+
fastlane/Preview.html
|
|
272
|
+
fastlane/screenshots/**/*.png
|
|
273
|
+
fastlane/test_output
|
|
274
|
+
|
|
275
|
+
# Code Injection
|
|
276
|
+
iOSInjectionProject/
|
|
277
|
+
|
|
278
|
+
# ----------------
|
|
279
|
+
# IDE / Editor
|
|
280
|
+
# ----------------
|
|
281
|
+
.idea/
|
|
282
|
+
*.iml
|
|
283
|
+
*.ipr
|
|
284
|
+
*.iws
|
|
285
|
+
.vscode/
|
|
286
|
+
*.swp
|
|
287
|
+
*.swo
|
|
288
|
+
.DS_Store
|
|
289
|
+
Thumbs.db
|
|
290
|
+
._*
|
|
291
|
+
.Spotlight-V100
|
|
292
|
+
.Trashes
|
|
293
|
+
ehthumbs.db
|
|
294
|
+
|
|
295
|
+
# Rider
|
|
296
|
+
*.sln.iml
|
|
297
|
+
|
|
298
|
+
# ----------------
|
|
299
|
+
# Docker
|
|
300
|
+
# ----------------
|
|
301
|
+
.docker/
|
|
302
|
+
|
|
303
|
+
# ----------------
|
|
304
|
+
# Logs & Output
|
|
305
|
+
# ----------------
|
|
306
|
+
logs/
|
|
307
|
+
*.log
|
|
308
|
+
|
|
309
|
+
# Audio output files (in root directories, not source code)
|
|
310
|
+
*.wav
|
|
311
|
+
*.mp3
|
|
312
|
+
# Note: Removed 'output.*' pattern as it incorrectly matches Output.java/Output.cs source files
|
|
313
|
+
|
|
314
|
+
# ----------------
|
|
315
|
+
# Misc
|
|
316
|
+
# ----------------
|
|
317
|
+
.npmrc
|
|
318
|
+
openapi.json
|