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
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)
for sample in voice.get_samples():
sample.play_audio(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
For a far more comprehensive example, check example.py
on the github repo.
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.1.tar.gz
(12.1 kB
view hashes)
Built Distribution
Close
Hashes for elevenlabslib-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5594b51b3a1bead0b28e297dacb14f3a91bb51576648e475b922281a55865310 |
|
MD5 | 50c90757996021623ae65eb951d21d6f |
|
BLAKE2b-256 | 159cd1963c4636953f444ccc3ee94fc88c196ec250ebcdc5f8a1dcd176ac041c |