transcribe-api 0.1.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,16 @@
1
+ """
2
+ Official Python SDK for Transcribe API.
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+
7
+ class TranscribeAPI:
8
+ def __init__(self, api_key: str, base_url: str = "https://api.transcribeapi.com/v1"):
9
+ self.api_key = api_key
10
+ self.base_url = base_url
11
+
12
+ def transcribe(self, *args, **kwargs):
13
+ raise NotImplementedError(
14
+ "The Transcribe API Python SDK is coming soon. "
15
+ "For now, use the REST API docs at https://transcribeapi.com."
16
+ )
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: transcribe-api
3
+ Version: 0.1.0
4
+ Summary: Official Python SDK for Transcribe API.
5
+ Author-email: Transcribe API <admin@vocabrew.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://transcribeapi.com
8
+ Keywords: transcription,speech-to-text,whisper,audio,api
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+
17
+ # Transcribe API Python SDK
18
+
19
+ Official Python SDK for Transcribe API.
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ pip install transcribe-api
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```python
30
+ from transcribe_api import TranscribeAPI
31
+
32
+ client = TranscribeAPI(api_key="YOUR_API_KEY")
33
+ ```
34
+
35
+ Full SDK coming soon.
@@ -0,0 +1,5 @@
1
+ transcribe_api/__init__.py,sha256=-5y7z8rtVzOr83qjmYOHEM8b0l-gt8sJIezBlloN9UI,472
2
+ transcribe_api-0.1.0.dist-info/METADATA,sha256=XJe0b84uiO14SeaqJEQYXX2MmYNyWadvIGPPC6T1woQ,837
3
+ transcribe_api-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
4
+ transcribe_api-0.1.0.dist-info/top_level.txt,sha256=XLqiABAKNDDma51AmZVkXv4LyFI9f64ycU6KiweGZ2E,15
5
+ transcribe_api-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ transcribe_api