A Python client library for the Aristech Speech-to-Text API
Project description
Aristech STT-Client for Python
This is the Python client implementation for the Aristech STT-Server.
Installation
pip install aristech-stt-client
Usage
from aristech_stt_client import SttClient, RecognitionConfig, RecognitionSpec
client = SttClient(
api_key=os.getenv('ARISTECH_STT_API_KEY', ''), # This is the default and can be omitted
)
results = client.recognize_file("path/to/audio/file.wav", RecognitionConfig(specification=RecognitionSpec(model="some-model")))
print('\n'.join([r.chunks[0].alternatives[0].text for r in results]))
There are several examples in the examples directory:
- recognize.py: Demonstrates how to perform recognition on a file.
- streaming.py: Demonstrates how to stream audio to the server while receiving interim results.
- models.py: Demonstrates how to get the available models from the server.
- nlpFunctions.py: Demonstrates how to list the configured NLP-Servers and the coresponding functions.
- nlpProcess.py: Demonstrates how to perform NLP processing on a text by using the STT-Server as a proxy.
- account.py: Demonstrates how to retrieve the account information from the server.
To run the examples while using the local version of the package, run the package with the PYTHONPATH environment variable set to the src directory:
PYTHONPATH=src python examples/streaming.py
API Key
If you didn't get an API key but a token, secret and host instead, you can simply convert those values with our API key generator.
Alternatively you can still provide the connection options manually.
from aristech_stt_client import SttClient
client = SttClient(host='stt.example.com:443', auth_token='your-token', auth_secret='your-secret')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aristech_stt_client-2.4.0.tar.gz.
File metadata
- Download URL: aristech_stt_client-2.4.0.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94b29ee3bfbd98fed1f8e15acc582d20b7301630f584ab70c3734ed9755ffc8f
|
|
| MD5 |
e2bccb85a54c6d895fbedcd0a2f396b0
|
|
| BLAKE2b-256 |
1f743e3fc3d912f5a695942b5a46c790f08cdf5d4b5185cc83f7bb42fe601490
|
File details
Details for the file aristech_stt_client-2.4.0-py3-none-any.whl.
File metadata
- Download URL: aristech_stt_client-2.4.0-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
682503e138ed2e543c11405beee812f75c7db02311ef09c17a05190c6ed55989
|
|
| MD5 |
4d450349becc735a392ac4bf3edd2948
|
|
| BLAKE2b-256 |
cec6e958acb7c6b0c105de6a5f51408fdb5ed132786bbb95eeddea0bb03a36d1
|