Python library that helps you connect to Amazon's IVONA Speech Cloud from within your Python project. All you need to use it are the access keys.
It currently only implements CreateSpeech
and ListVoices
endpoints,
as they should cover the vast majority of use cases. Lexicons endpoints
may be added in the future.
If you're looking for out-of-the-box solution, have a look at ivona-speak - it's a script that uses this library and lets you use its functionality directly from your shell.
With PyPI:
$ pip install ivona_api
There's no documentation as of now, but the code is commented and should be pretty straightforward to use.
But feel free to ask me if anything is unclear.
Package was tested with the help of py.test
and tox
on Python 2.7, 3.4
and 3.5 (see tox.ini
).
To run tests yourself you need to set environment variables with secret
and access keys before running tox
:
$ export IVONA_ACCESS_KEY="YOUR_ACTUAL_ACCESS_KEY"
$ export IVONA_SECRET_KEY="YOUR_ACTUAL_SECRET_KEY"
$ tox
Package source code is available at GitHub.
Feel free to use, ask, fork, star, report bugs, fix them, suggest enhancements, add functionality and point out any mistakes.
Developed and maintained by Pythonity.
Written by Paweł Adamczak.