Complete python wrapper for the elevenlabs API
Project description
elevenlabslib
Python wrapper for the full elevenlabs API.
Installation
Just run pip install elevenlabslib
, it's on pypi.
Usage
For a far more comprehensive example, check example.py.
Here is a very simple usage sample.
- Retrieves a voice based on the name
- Plays back (using the included playback functions that use sounddevice) all its samples (and the preview)
- Generates and plays back a new audio
- Deletes the newly created audio from the user history
from elevenlabslib import *
user = ElevenLabsUser("API_KEY")
voice = user.get_voices_by_name("Rachel")[0] # This is a list because multiple voices can have the same name
voice.play_preview(playInBackground=False)
voice.generate_and_play_audio("Test.", playInBackground=False)
for historyItem in user.get_history_items():
if historyItem.text == "Test.":
# The first items are the newest, so we can stop as soon as we find one.
historyItem.delete()
break
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
elevenlabslib-0.2.5.tar.gz
(13.6 kB
view hashes)
Built Distribution
Close
Hashes for elevenlabslib-0.2.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7b2a2ce3b35fa0f17810bc76b9b363991dfedc4ac7a023c517dc9cef7858ed4 |
|
MD5 | a32dc49706e797b100efc0697bb42c50 |
|
BLAKE2b-256 | 8f4128c038b1fd9f894b1f1be73a6facf84fe0b26479a616d0a6858d20648e6e |