Metadata-Version: 2.1
Name: text_to_speech
Version: 1.3.1
Summary: A simple text to speech engine
Home-page: https://github.com/dewittethomas/text-to-speech
Author: Thomas Dewitte
Author-email: thomasdewittecontact@gmail.com
License: MIT
Description: # text-to-speech
        
        [![npm](https://img.shields.io/pypi/v/text-to-speech.svg)](https://pypi.org/project/text-to-speech/)
        
        A simple text to speech engine
        
        ## Installation
        To install the package run this command:
        
        ```bash
        pip install text-to-speech
        ```
        
        ## Usage
        
        ### Speak
        
        Write â€˜helloâ€™ in English
        
        ```python
        from text_to_speech import speak 
        
        speak("hello", lang="en")
        ```
        
        Write â€˜bonjourâ€™ in French
        
        ```python
        from text_to_speech import speak 
        
        speak("bonjour", lang="fr")
        ```
        
        
        Write â€˜helloâ€™ in English slow
        
        ```python
        from text_to_speech import speak 
        
        speak("hello", lang="en", slow=True)
        ```
        
        "text" is the text, and "lang" is an IETF language tag such as en or pt-br, "slow" is the option if it has to be read slow or not.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >= 3.5
Description-Content-Type: text/markdown
