transcribe-api 0.1.0__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.
- transcribe_api-0.1.0/PKG-INFO +35 -0
- transcribe_api-0.1.0/README.md +19 -0
- transcribe_api-0.1.0/pyproject.toml +28 -0
- transcribe_api-0.1.0/setup.cfg +4 -0
- transcribe_api-0.1.0/transcribe_api/__init__.py +16 -0
- transcribe_api-0.1.0/transcribe_api.egg-info/PKG-INFO +35 -0
- transcribe_api-0.1.0/transcribe_api.egg-info/SOURCES.txt +7 -0
- transcribe_api-0.1.0/transcribe_api.egg-info/dependency_links.txt +1 -0
- transcribe_api-0.1.0/transcribe_api.egg-info/top_level.txt +1 -0
|
@@ -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,19 @@
|
|
|
1
|
+
# Transcribe API Python SDK
|
|
2
|
+
|
|
3
|
+
Official Python SDK for Transcribe API.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install transcribe-api
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from transcribe_api import TranscribeAPI
|
|
15
|
+
|
|
16
|
+
client = TranscribeAPI(api_key="YOUR_API_KEY")
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Full SDK coming soon.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "transcribe-api"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Official Python SDK for Transcribe API."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Transcribe API", email = "admin@vocabrew.com" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["transcription", "speech-to-text", "whisper", "audio", "api"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent"
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://transcribeapi.com"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools]
|
|
28
|
+
packages = ["transcribe_api"]
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
transcribe_api
|