
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
This is the Python client implementation for the Aristech STT-Server.
pip install aristech-stt-client
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:
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
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.
from aristech_stt_client import SttClient
client = SttClient(host='stt.example.com:443', auth_token='your-token', auth_secret='your-secret')
FAQs
A Python client library for the Aristech Speech-to-Text API
We found that aristech-stt-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.