Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.9] - 2025-07-03

- Deprecating `speechmatics-python` in favor of `speechmatics-rt` for real-time transcription and 'speechmatics-batch' for batch transcription.

## [4.0.8] - 2025-07-03

- Patch WebsocketClient to work with any websockets version >= 10.0
Expand Down Expand Up @@ -38,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [4.0.1] - 2025-04-30

### Added
### Added

- Support RT Multichannel and channel DZ

Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
# speechmatics-python   ![Tests](https://github.com/speechmatics/speechmatics-python/workflows/Tests/badge.svg) [![License](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/speechmatics/speechmatics-python/blob/master/LICENSE.txt) ![PythonSupport](https://img.shields.io/badge/Python-3.7%2B-green)
# Legacy Speechmatics Python Client

Python client library and CLI for Speechmatics Realtime and Batch ASR v2 APIs.
> **⚠️ WARNING: This package (`speechmatics-python`) has been deprecated.**
>
> - **No new features** will be added
> - **Bug fixes and security patches only** until **2025-12-31**
>
### Migration Path

**New Official SDKs** (at [speechmatics-python-sdk](https://github.com/speechmatics/speechmatics-python-sdk)):

| Old Package | New Package | Purpose | Migration Guide |
|-------------|-------------|---------|-----------------|
| `speechmatics-python` | [`speechmatics-batch`](https://pypi.org/project/speechmatics-batch) | Batch transcription | [📖 Batch Migration Guide](https://github.com/speechmatics/speechmatics-python-sdk/blob/main/sdk/batch/MIGRATION.md) |
| `speechmatics-python` | [`speechmatics-rt`](https://pypi.org/project/speechmatics-rt) | Real-time transcription | [📖 RT Migration Guide](https://github.com/speechmatics/speechmatics-python-sdk/blob/main/sdk/rt/MIGRATION.md) |
| `speechmatics.cli` | Not available (will be released as a separate package) | | |

Python client library and CLI for Speechmatics Realtime and Batch ASR v2 APIs.

## Getting started

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def get_version(fname):
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Development Status :: 7 - Inactive",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
Expand Down
10 changes: 10 additions & 0 deletions speechmatics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
import warnings

from speechmatics.client import * # noqa
from speechmatics.exceptions import * # noqa
from speechmatics.models import * # noqa

warnings.warn(
"speechmatics-python is deprecated. Migrate to 'speechmatics-rt' for real-time "
"or 'speechmatics-batch' for batch transcription. "
"For more information, please visit https://github.com/speechmatics/speechmatics-python-sdk",
DeprecationWarning,
stacklevel=2,
)