Metadata-Version: 2.1
Name: voicevox-client
Version: 0.2.0a0
Summary: Voicevox engine unoffical wrapper
Home-page: https://github.com/voicevox-client/python
Author: tuna2134
License: MIT
Project-URL: Documentation, https://voicevox-client.tuna2134.jp
Project-URL: Source, https://github.com/tuna2134/voicevox-client
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx (>=0.23.2)
Requires-Dist: typing-extensions (>=4.3.0)
Provides-Extra: docs
Requires-Dist: pdoc3 ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'
Requires-Dist: pytest-asyncio ; extra == 'tests'

# voicevox client for python.
Unoffical API wrapper that you can use voicevox easy!

## Requirements
`Voicevox engine` only!

Well if you want install voicevox engine, please read [this](https://github.com/VOICEVOX/voicevox_engine/blob/master/README.md).

## Install
```sh
pip install voicevox-client
```

All that!

## Example
```python
from voicevox import Client
import asyncio


async def main():
    async with Client() as client:
        audio_query = await client.create_audio_query(
            "こんにちは！", speaker=1
        )
        with open("voice.wav", "wb") as f:
            f.write(await audio_query.synthesis())


if __name__ == "__main__":
    asyncio.run(main())
```
