Metadata-Version: 2.1
Name: rhasspy-client
Version: 1.0.0
Summary: Client library for talking to remote Rhasspy server
Home-page: https://github.com/synesthesiam/rhasspy-client
Author: Michael Hansen
Author-email: hansen.mike@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Rhasspy Client

Basic client library for talking to a remote [Rhasspy](https://rhasspy.readthedocs.io) server. Uses [aiohttp](https://aiohttp.readthedocs.io/en/stable/).

## Example

```python
import aiohttp
from rhasspyclient import RhasspyClient

async with aiohttp.ClientSession() as session:
    client = RhasspyClient("http://localhost:12101/api", session)
    result = await client.text_to_intent("what time is it")
    print(result)
```

## Module CLI

You can run the module too:

```bash
$ python3 -m rhasspyclient <COMMAND> [<ARG>, ...]
```

Use `--help` to see available commands.


