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 pydub) 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 *
import pydub
import pydub.playback
import io
#Playback function
def play(bytesData):
sound = pydub.AudioSegment.from_file_using_temporary_files(io.BytesIO(bytesData))
pydub.playback.play(sound)
return
user = ElevenLabsUser("[API_KEY]")
voice = user.get_voices_by_name("Rachel")[0] #This is a list because multiple voices can have the same name
play(voice.get_preview_bytes())
for sample in voice.get_samples():
play(sample.get_audio_bytes())
play(voice.generate_audio_bytes("Test."))
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.1.10.tar.gz
(7.5 kB
view hashes)
Built Distribution
Close
Hashes for elevenlabslib-0.1.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7a245a2cd1a638af5648a709bcd689ee04add396b81d3a942ca1694a6e4cbee |
|
MD5 | b582a5d57371321002f1c36bfb2218e5 |
|
BLAKE2b-256 | b470b204b59fabc6df562b14f4c143b87f393f91627eb4f39fd790a024a5accf |