A synchronous and asynchronous API wrapper for the UberDuck text-to-speech service with 100% coverage and top-notch utilities.
- - Synchronous support
- - Asynchronous support
- - Object-oriented
- - Easy to use
- - Utilities like file-saving, audio-playing etc. packed all in one
- - Very adjustable/configurable
- - Regularly maintained
- - Makes the hard tasks of polling and asynchronous operations easy
pip install uberduck
for the stable version (recommended).
pip install -U uberduck
to update your stable version.
pip install git+https://github.com/ImNimboss/uberduck
to install it straight off of GitHub (you need git installed for this).
pip install -U git+https://github.com/ImNimboss/uberduck
to upgrade your version that you got from GitHub.
Check Documentation/Basics.md.
Check Documentation/Examples.md.
The idea to implement logging in this library came from discord.py.
The idea to use the polling
library came from CupOfGeo/UberDuckAPI, another uberduck.ai API wrapper.
v0.0.1
- Initial release.v0.0.2
- Fixedget_voices()
andget_voices_async()
by updating theVoice
class to be compatible with the new voice data available from the API.v0.0.3
- MovedREADME.md
from.github
to root folder due to compatibility issues with other softwarev0.0.4
- Added attributesadded_at
,is_primary
,hifi_gan_vocoder
,ml_model_id
,speaker_id
,language
toVoice
classv0.0.5
- Updated dependencies to supportLiteral
in python versions below 3.8 and addedsimpleaudio
installation