Skip to main content

Python SDK for dTelecom real-time speech-to-text with x402 micropayments

Project description

dtelecom-stt

Python SDK for dTelecom real-time speech-to-text with x402 micropayments.

Pay-per-minute STT powered by Whisper and Parakeet, with automatic blockchain payments on Base.

Install

pip install dtelecom-stt

Quick Start

import asyncio
from dtelecom_stt import STTClient

async def main():
    client = STTClient(private_key="0x...")

    async with client.session(minutes=5, language="en") as stream:
        async for t in stream.transcribe_file("meeting.wav"):
            print(f"[{t.start:.1f}s] {t.text}")

asyncio.run(main())

Real-Time Streaming

import asyncio
from dtelecom_stt import STTClient

async def main():
    client = STTClient(private_key="0x...")

    async with client.session(minutes=5, language="en") as stream:
        # Callback-based
        stream.on_transcription(lambda t: print(t.text))

        # Send audio chunks (PCM16, 16kHz, mono)
        await stream.send_audio(pcm_bytes)

        # Or iterate asynchronously
        async for t in stream.transcriptions():
            print(t.text)

asyncio.run(main())

Auto-Extend Sessions

Sessions automatically buy more time when running low (enabled by default):

# 30-minute session that auto-extends
async with client.session(minutes=30, language="en") as stream:
    # When <60s remaining, SDK buys 5 more minutes automatically
    async for t in stream.transcriptions():
        print(t.text)

# Disable auto-extend
async with client.session(minutes=5, auto_extend=False) as stream:
    ...

Audio Format

The server expects PCM16, 16kHz, mono audio. Convert with ffmpeg:

ffmpeg -i input.mp3 -ar 16000 -ac 1 -acodec pcm_s16le output.wav

Pricing

info = await client.pricing()
print(f"${info.price_per_minute_usd}/min ({info.currency} on {info.network})")

Current pricing: $0.005/min (USDC on Base Sepolia testnet).

API Reference

STTClient(private_key, url=None)

Main client. Default URL: https://x402stt.dtelecom.org.

  • session(minutes=5, language="en", auto_extend=True) — Create a paid session (async context manager)
  • pricing() — Get pricing info
  • health() — Check server health

Stream

Returned by client.session(). Async context manager.

  • send_audio(data: bytes) — Send raw PCM16 audio
  • transcriptions() — Async iterator of Transcription objects
  • transcribe_file(path) — Stream a WAV file and yield transcriptions
  • on_transcription(callback) — Register callback for transcriptions
  • close() — Close the stream

Transcription

  • text: str — Transcribed text
  • start: float | None — Start time in seconds
  • end: float | None — End time in seconds
  • confidence: float | None — Confidence score
  • is_final: bool — Whether this is a final transcription

Supported Languages

25 languages via Parakeet-TDT (fast) with Whisper fallback:

English, Russian, German, French, Spanish, Italian, Portuguese, Dutch, Polish, Czech, Romanian, Hungarian, Greek, Turkish, Ukrainian, Swedish, Norwegian, Danish, Finnish, Catalan, Croatian, Lithuanian, Slovenian, Latvian, Estonian.

Error Handling

from dtelecom_stt import PaymentError, SessionExpiredError, ConnectionError

try:
    async with client.session(minutes=5) as stream:
        async for t in stream.transcriptions():
            print(t.text)
except PaymentError:
    print("Payment failed — check wallet balance")
except SessionExpiredError:
    print("Session time ran out")
except ConnectionError:
    print("Cannot connect to server")

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dtelecom_stt-0.1.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dtelecom_stt-0.1.0-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file dtelecom_stt-0.1.0.tar.gz.

File metadata

  • Download URL: dtelecom_stt-0.1.0.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for dtelecom_stt-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9c64053db434a7a93fad06a0cfcee62f5e23f703eb35c0ed2ee0d3deb08f1cfb
MD5 31619b2b1f3827ad8c6d5cf33227d0df
BLAKE2b-256 cd6c7f763a77e105ae810a49dac7dd4a3106bf57670195ef02aeef38baf54b7d

See more details on using hashes here.

File details

Details for the file dtelecom_stt-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: dtelecom_stt-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for dtelecom_stt-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 00d6d9d99a4c524c4f2e559cab9f380f8ef41ae0589a777b109d1e0947eabb5f
MD5 f1b0d5e5d58b7b2dfd3bd65557f083a9
BLAKE2b-256 37d8db66709c7e64a59e64cdae06c5dc3ee6b744d1f065612aa3e38667bd3ab9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page