Metadata-Version: 2.1
Name: daisys
Version: 1.0.1
Summary: UNKNOWN
Home-page: https://github.com/daisys-ai/daisys-api-python
Author: daisys.ai
Author-email: api@daisys.ai
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx
Requires-Dist: pydantic >=2

# Daisys API

This library wraps the Daisys API for text-to-speech and voice generation services.

Have your product talking in seconds!


```python
    with DaisysAPI('speak', email='user@example.com', password='pw') as speak:
        voice = speak.get_voices()[-1]
        print(f"{voice.name} speaking!")
        take = speak.generate_take(voice_id=voice.voice_id, text="Hello there, I am Daisys!",
                                   prosody=SimpleProsody(pace=-3, pitch=2, expression=10))
        audio_wav = speak.get_take_audio(take.take_id, filename='hello_daisys.wav')
```

This library uses `pydantic` and `httpx` as the main dependencies.  Clients using normal,
synchronous Python, or using `asyncio`, are available.

Please visit the [online documentation](https://daisys-ai.github.io/daisys-api-python/)
for information on how to use the Daisys API from Python, or from any language using the
documented REST endpoints.

A product of [Daisys AI](https://daisys.ai).

The software is licensed with the MIT license, as detailed in LICENSE.


