Metadata-Version: 2.1
Name: mac-say
Version: 2020.7.2
Summary: macOS tts. say python interface
Home-page: https://github.com/andrewp-as-is/mac-say.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/mac-say.svg?maxAge=3600)](https://pypi.org/project/mac-say/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install mac-say
        ```
        
        #### Examples
        ```python
        >>> import mac_say
        >>> mac_say.say("hello world")
        >>> mac_say.say(["-f","file.txt","-v","Alex"])
        ```
        
        voices list
        ```python
        >>> mac_say.voices("en")
        [('Alex', 'en_US', 'Most people recognize me by my voice.'), ...]
        ```
        
        background - add `background=True`
        ```python
        >>> mac_say.say("hello world",background=True)
        ```
        
        Google Text-To-Speech
        ```python
        >>> mac_say.gtts.mp3("en","hello world")
        /Users/username/Library/Caches/say/<hash>.mp3
        
        >>> mac_say.gtts.say("en","hello world")
        ```
        
        ```bash
        $ python -m mac_say.gtts "en" "hello world"
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: say
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
