Metadata-Version: 2.1
Name: ondewo-csi-client
Version: 0.2.3
Summary: exposes the ondewo-csi endpoints in a user-friendly way
Home-page: https://github.com/ondewo/ondewo-csi-client-python
Author: ONDEWO GbmH
Author-email: info@ondewo.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=2.7, !=3.0.1
Description-Content-Type: text/markdown
Requires-Dist: grpcio (==1.31.0)
Requires-Dist: grpcio-reflection (==1.31.0)
Requires-Dist: grpcio-tools (==1.31.0)
Requires-Dist: mypy-protobuf (==1.20)
Requires-Dist: ondewo-logging (>=2.0.2)
Requires-Dist: ondewo-nlu-client (>=1.1.2)
Requires-Dist: ondewo-s2t-client (>=1.4.1)
Requires-Dist: ondewo-sip-client (>=2.2.1)
Requires-Dist: ondewo-t2s-client (>=1.5.0)
Requires-Dist: setuptools (~=52.0.0)

![Logo](https://raw.githubusercontent.com/ondewo/ondewo-logos/master/github/ondewo_logo_github_2.png)

ONDEWO-CSI Client Library
======================

This library facilitates the interaction between a user and an ONDEWO-CSI server instance. 

It is structured around a series of python files generated from protobuf files. These protobuf files specify the details of the interface, and can be used to generate code in 10+ high-level languages. They are found in the [apis submodule](./ondewo-csi-api).

Python Installation
-------------------

```bash
git clone git@github.com:ondewo/ondewo-csi-client-python.git
cd ondewo-csi-client-python
pip install -e .
```

Let's Get Started! (WIP)
------------------
Import your programming interface:
```bash
ls ondewo
```

Get a suitable example:
```bash
ls examples
```

Examples
------------------

To use the example script, you need pyaudio and/or pysoundio installed.

```pyaudio installation
sudo apt install -y libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0
sudo apt install -y ffmpeg libav-tools

pip install pyaudio
```

```pysoundio installation
sudo apt install -y libsoundio-dev

pip install pysoundio
```

once you have those installed, you can run ./ondewo/csi/examples/speech2speech_example.py


