Metadata-Version: 2.1
Name: streamn
Version: 1.0.0
Summary: a python library to use Streamn API's 
Home-page: UNKNOWN
Author: B. sai reddy Developer
Author-email: sai@streamn.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/saireddy12/streamn_sdk/issues
Project-URL: Source, https://github.com/saireddy12/streamn_sdk
Keywords: streamn,ASR,ASR API,Speech Recognition API,Audio Labs
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Streamn Python SDK

This [Streamn](https://www.streamn.ai) Python SDK provides convenient access to the Streamn API's.

## Documentation

See the [API docs](https://docs.streamn.ai/)

### Requirements

- Python 3+

## Installation

First make sure that Python is installed in your system.

```sh
pip install --upgrade streamn
```

<!-- > install using github repo:

```
1. clone this repo
2. move the repo ( cd alignment )
3. create virtual env(python3 -m venv virtualenvName)
4. activate the virtualenv ( source virtualenvName/bin/activate)
5. install required libraries ( pip3 install -r requirements.txt )
6. call the required fucntion from the utils file and add it in your code 
``` -->

## Configuration

The library needs to be configured with your account's API Key

save credentials by saving a file named streamn_config.json in your working directory in the following format.

Example of 'streamn_cofig.json' file

```conf
{
    "api_key":"asaisdniasnasnfjasdfn_asjhnadjsdsa"
}
```
## A Transcript generation Example


```python
import streamn

# Process audio file
status , transcipt = streamn.utils.process_audio.get_transcript( audio_file_path = <audio file path to transcibe> , is_medical = <bool, True or Flase> )

```

To know more about conversation object and it's functions, click [here][extended_readme-conversation-object]


### Add other features


## Need support

If the above doesn't help, do let us know at contact@streamn.ai

[symbl-docs]: https://docs.streamn.ai/

