Skip to content

Commit c9d8fa7

Browse files
committed
Update version to v2.0.3
1 parent d32f144 commit c9d8fa7

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
# Yandex SpeechKit Python SDK
22

3-
![PyPI](https://img.shields.io/pypi/v/speechkit) ![GitHub](https://img.shields.io/github/license/tikhonp/yandex-speechkit-lib-python) ![PyPI - Format](https://img.shields.io/pypi/format/wheel) [![Build Status](https://travis-ci.com/TikhonP/yandex-speechkit-lib-python.svg?branch=master)](https://travis-ci.com/TikhonP/yandex-speechkit-lib-python) [![Updates](https://pyup.io/repos/github/TikhonP/yandex-speechkit-lib-python/shield.svg)](https://pyup.io/repos/github/TikhonP/yandex-speechkit-lib-python/) [![Python 3](https://pyup.io/repos/github/TikhonP/yandex-speechkit-lib-python/python-3-shield.svg)](https://pyup.io/repos/github/TikhonP/yandex-speechkit-lib-python/) [![codecov](https://codecov.io/gh/tikhonp/yandex-speechkit-lib-python/branch/master/graph/badge.svg?token=NRNV9E36I4)](https://codecov.io/gh/tikhonp/yandex-speechkit-lib-python) [![Documentation Status](https://readthedocs.org/projects/yandex-speechkit-lib-python/badge/?version=latest)](https://yandex-speechkit-lib-python.readthedocs.io/en/latest/?badge=latest)
4-
53
Python SDK for Yandex SpeechKit API.
64

7-
This library supports absolutely all Yandex SpeechKit methods including “Streaming mode for short audio recognition”. For more information please visit [Yandex Speechkit API Docs](https://cloud.yandex.com/en/docs/speechkit/).
5+
<div align="center">
6+
7+
![PyPI](https://img.shields.io/pypi/v/speechkit) ![GitHub](https://img.shields.io/github/license/tikhonp/yandex-speechkit-lib-python) [![Build Status](https://travis-ci.com/TikhonP/yandex-speechkit-lib-python.svg?branch=master)](https://travis-ci.com/TikhonP/yandex-speechkit-lib-python) [![Updates](https://pyup.io/repos/github/TikhonP/yandex-speechkit-lib-python/shield.svg)](https://pyup.io/repos/github/TikhonP/yandex-speechkit-lib-python/) [![codecov](https://codecov.io/gh/tikhonp/yandex-speechkit-lib-python/branch/master/graph/badge.svg?token=NRNV9E36I4)](https://codecov.io/gh/tikhonp/yandex-speechkit-lib-python)
8+
[![Documentation Status](https://readthedocs.org/projects/yandex-speechkit-lib-python/badge/?version=latest)](https://pip.pypa.io/en/stable/?badge=stable)
9+
[![Downloads](https://pepy.tech/badge/speechkit)](https://pepy.tech/project/speechkit)
10+
11+
</div>
12+
13+
For more information please visit [Yandex Speechkit API Docs](https://cloud.yandex.com/en/docs/speechkit/). This lib
14+
supports short and long audio recognition of speechkit
815

916
# Getting Started
1017

@@ -25,13 +32,14 @@ $ python -m pip install .
2532
python -m pip install speechkit
2633
```
2734

28-
# SpeechKit documentation
35+
# Speechkit documentation
2936

30-
See [speechkit readthedocs](https://yandex-speechkit-lib-python.readthedocs.io/en/latest/index.html) or [speechkit docs in PDF](https://yandex-speechkit-lib-python.readthedocs.io/_/downloads/en/latest/pdf/) for more info.
37+
See [speechkit docs](https://yandex-speechkit-lib-python.readthedocs.io/en/latest/index.html) for more
38+
info. [PDF docs](https://yandex-speechkit-lib-python.readthedocs.io/_/downloads/en/latest/pdf/)
3139

32-
# Using speechkit
40+
## Using speechkit
3341

34-
There are support of synthesis, recognizing long and short audio. For more information please read [Documentation](https://yandex-speechkit-lib-python.readthedocs.io/en/latest/index.html).
42+
There are support of recognizing long and short audio and synthesis. For more information please read docs below.
3543

3644
First you need create session for authorisation:
3745

@@ -88,12 +96,6 @@ synthesizeAudio.synthesize(
8896
)
8997
```
9098

91-
# TODO
92-
93-
- Provide wide range of exceptions (There is only `speechkit.exceptions.RequestError` right now)
94-
- Add troubleshooting headers to `speechkit.Session`
95-
- Add gRPC streaming synthesis
96-
9799
# License
98100

99101
MIT

docs/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
sphinx==4.1.2
2-
sphinx_markdown_builder==0.5.4
3-
sphinx-rtd-theme==0.5.2
1+
sphinx>=4.1.2
2+
sphinx_markdown_builder>=0.5.4
3+
sphinx-rtd-theme>=0.5.2

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ boto3
22
requests
33
grpcio-tools>=1.39.0
44
pyjwt>=2.1.0
5-
cryptography
5+
cryptography

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = speechkit
3-
version = 2.0.2
3+
version = 2.0.3
44
author = Tikhon Petrishchev
55
author_email = tikhon.petrishchev@gmail.com
66
description = Python SDK for Yandex Speechkit API.

src/speechkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
__author__ = 'Tikhon Petrishchev'
7-
__version__ = '2.0.2'
7+
__version__ = '2.0.3'
88

99
from speechkit._auth import Session
1010
from speechkit._recognition.streaming_recognition import DataStreamingRecognition

0 commit comments

Comments
 (0)