Metadata-Version: 1.1
Name: elevenlabs
Version: 0.1
Summary: A Python library for integrating with ElevenLabs.io's API
Home-page: https://github.com/benbaptist/elevenlabs
Author: Ben Baptist
Author-email: me@benbaptist.com
License: UNKNOWN
Description: elevenlabs
        ==========
        
        |PyPI - Downloads| |PyPI - Status| |PyPI|
        
        elevenlabs is an unofficial Python library that provides an easy-to-use
        interface for elevenlabs.io’ API. With this library, you can easily
        integrate with the API to generate voices.
        
        Installation
        ============
        
        To install elevenlabs, run:
        
        ::
        
           pip install --upgrade elevenlabs
        
        Basic Usage
        ===========
        
        Here’s an example of how you can use elevenlabs to retrieve data from
        the API:
        
        ::
        
           from elevenlabs import ElevenLabs
        
           eleven = ElevenLabs(api_key)
        
           # Get a Voice object, by name or UUID
           voice = eleven.voices["Arnold"]
        
           # Generate the TTS
           audio = voice.generate("Hey buddy! It's a beautiful day.")
        
           # Save the TTS to a file named 'my_first_tts' in the working directory
           audio.save("my_first_tts")
        
        See example.py for more. For more advanced usage, refer to the
        (currently non-existent!) documentation and the API reference.
        
        See `the official ElevenLabs
        documentation <https://api.elevenlabs.io/docs>`__ for more information.
        
        Real World Example
        ==================
        
        I’m currently using this library to produce fully-automated weather
        reports on my radio station, `BMIX94 <https://listen.bmix.live>`__. For
        a sample of how it sounds, `here’s link to the latest weather
        report <https://listen.bmix.live/streams/benmixer/weather.wav>`__ that
        will actually be broadcasting at various times throughout the day. That
        link is always pointing to the most recent weather report generated.
        
        .. |PyPI - Downloads| image:: https://img.shields.io/pypi/dm/elevenlabs?style=for-the-badge
           :target: https://pypi.org/project/elevenlabs/
        .. |PyPI - Status| image:: https://img.shields.io/pypi/status/elevenlabs?style=for-the-badge
        .. |PyPI| image:: https://img.shields.io/pypi/v/elevenlabs?style=for-the-badge
           :target: https://pypi.org/project/elevenlabs/
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
