transcribe-cpp 0.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.
@@ -0,0 +1,12 @@
1
+ """Python bindings for transcribe.cpp.
2
+
3
+ This is a placeholder distribution that reserves the ``transcribe-cpp`` name on
4
+ PyPI while first-party bindings are under development. It intentionally ships no
5
+ native code yet, so importing it succeeds but no transcription API is available.
6
+
7
+ See https://github.com/handy-computer/transcribe.cpp for status.
8
+ """
9
+
10
+ __version__ = "0.0.0"
11
+
12
+ __all__ = ["__version__"]
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: transcribe-cpp
3
+ Version: 0.0.0
4
+ Summary: Python bindings for transcribe.cpp (pre-release name reservation placeholder)
5
+ Project-URL: Homepage, https://github.com/handy-computer/transcribe.cpp
6
+ Project-URL: Repository, https://github.com/handy-computer/transcribe.cpp
7
+ Project-URL: Issues, https://github.com/handy-computer/transcribe.cpp/issues
8
+ Author: The transcribe.cpp authors
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: asr,ggml,parakeet,speech-to-text,transcription,whisper
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # transcribe-cpp
22
+
23
+ Python bindings for [transcribe.cpp](https://github.com/handy-computer/transcribe.cpp),
24
+ a C/C++ speech-to-text library built on ggml.
25
+
26
+ > **Status: placeholder.** This release reserves the `transcribe-cpp` name on
27
+ > PyPI while the first-party bindings are developed. It ships no native code and
28
+ > exposes no transcription API yet. Watch the repository for the first
29
+ > functional release.
30
+
31
+ ```python
32
+ import transcribe_cpp
33
+
34
+ print(transcribe_cpp.__version__)
35
+ ```
36
+
37
+ - Import package: `transcribe_cpp`
38
+ - Distribution: `transcribe-cpp`
39
+ - License: MIT
@@ -0,0 +1,5 @@
1
+ transcribe_cpp/__init__.py,sha256=nLbCOh3rsJw4I8c6EDizOqgJi1_835kKl4xJqjXrCbg,402
2
+ transcribe_cpp-0.0.0.dist-info/METADATA,sha256=0e-SHCz5bsSF1KljNnH744HFxiaLfRN2uEo_ntonRps,1453
3
+ transcribe_cpp-0.0.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ transcribe_cpp-0.0.0.dist-info/licenses/LICENSE,sha256=hqU2M7VvawKdPLQhWLzHqsDN_4mKzrE-g7k-Nou8SsY,1083
5
+ transcribe_cpp-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 The transcribe.cpp authors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.