Speechall Python SDK

The Speechall Python SDK provides a convenient way to integrate our powerful speech-to-text API into your Python applications.

See the Full Documentation on GitHub

For comprehensive documentation, advanced features, API reference, and examples, visit the official Python SDK repository on GitHub.

Installation

Install the SDK using pip:

pip install speechall

Quick Start

Here’s a complete example to transcribe an audio file:

from speechall import SpeechallApi

client = SpeechallApi(token="YOUR_API_KEY")

with open("audio.mp3", "rb") as f:
    result = client.speech_to_text.transcribe(
        model="openai.whisper-1",
        request=f.read()
    )
print(result.text)

Next Steps