File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # speechmatics-python & ensp ; ![ 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 )
1+ # Legacy Speechmatics Python Client
22
3- Python client library and CLI for Speechmatics Realtime and Batch ASR v2 APIs.
3+ > ** ⚠️ WARNING: This package (` speechmatics-python ` ) has been deprecated.**
4+ >
5+ > - ** No new features** will be added
6+ > - ** Bug fixes and security patches only** until ** 2025-12-31**
7+ >
8+
9+ ### Migration Path
10+
11+ ** New Official SDKs** (at [ speechmatics-python-sdk] ( https://github.com/speechmatics/speechmatics-python-sdk ) ):
412
13+ | Old Package | New Package | Purpose | Migration Guide |
14+ | -------------| -------------| ---------| -----------------|
15+ | ` 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 ) |
16+ | ` 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 ) |
17+ | ` speechmatics.cli ` | Not available (will be released as a separate package) | | |
18+
19+ Python client library and CLI for Speechmatics Realtime and Batch ASR v2 APIs.
520
621## Getting started
722
Original file line number Diff line number Diff line change 1- 4.0.4
1+ 4.0.5
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ def get_version(fname):
8585 classifiers = [
8686 "Environment :: Console" ,
8787 "Intended Audience :: Developers" ,
88+ "Development Status :: 7 - Inactive" ,
8889 "License :: OSI Approved :: MIT License" ,
8990 "Operating System :: OS Independent" ,
9091 "Programming Language :: Python :: 3" ,
Original file line number Diff line number Diff line change 1+ import warnings
2+
13from speechmatics .client import * # noqa
24from speechmatics .exceptions import * # noqa
35from speechmatics .models import * # noqa
6+
7+ warnings .warn (
8+ "DEPRECATION: speechmatics-python is deprecated."
9+ "Please migrate to 'speechmatics-rt' for real-time or 'speechmatics-batch' for batch transcription." ,
10+ DeprecationWarning ,
11+ stacklevel = 2 ,
12+ )
You can’t perform that action at this time.
0 commit comments