| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | Metadata-Version: 2.1Name: gTTSVersion: 2.5.0Summary: gTTS (Google Text-to-Speech), a Python library and CLI tool to interface with Google Translate text-to-speech APIAuthor-email: Pierre Nicolas Durette <pndurette@gmail.com>License: MITProject-URL: homepage, https://github.com/pndurette/gTTSProject-URL: documentation, https://gtts.readthedocs.ioProject-URL: repository, https://github.com/pndurette/gTTSProject-URL: changelog, https://github.com/pndurette/gTTS/blob/main/CHANGELOG.mdKeywords: gtts,text to speech,Google Translate,TTSClassifier: Environment :: ConsoleClassifier: Intended Audience :: DevelopersClassifier: License :: OSI Approved :: MIT LicenseClassifier: Operating System :: MacOSClassifier: Operating System :: UnixClassifier: Operating System :: POSIXClassifier: Operating System :: POSIX :: LinuxClassifier: Operating System :: Microsoft :: WindowsClassifier: Programming Language :: Python :: 3.8Classifier: Programming Language :: Python :: 3.9Classifier: Programming Language :: Python :: 3.10Classifier: Programming Language :: Python :: 3.11Classifier: Programming Language :: Python :: 3.12Classifier: Topic :: Software Development :: LibrariesClassifier: Topic :: Multimedia :: Sound/Audio :: SpeechRequires-Python: >=3.7Description-Content-Type: text/markdownLicense-File: LICENSERequires-Dist: requests <3,>=2.27Requires-Dist: click <8.2,>=7.1Provides-Extra: docsRequires-Dist: sphinx ; extra == 'docs'Requires-Dist: sphinx-autobuild ; extra == 'docs'Requires-Dist: sphinx-rtd-theme ; extra == 'docs'Requires-Dist: sphinx-click ; extra == 'docs'Requires-Dist: sphinx-mdinclude ; extra == 'docs'Provides-Extra: testsRequires-Dist: pytest ~=7.1.3 ; extra == 'tests'Requires-Dist: pytest-cov ; extra == 'tests'Requires-Dist: testfixtures ; extra == 'tests'# gTTS**gTTS** (*Google Text-to-Speech*), a Python library and CLI tool to interface with Google Translate's text-to-speech API. Write spoken `mp3` data to a file, a file-like object (bytestring) for further audio manipulation, or `stdout`.<http://gtts.readthedocs.org/>[](https://pypi.org/project/gTTS/)[](https://pypi.org/project/gTTS/)[](https://github.com/pndurette/gTTS/actions)[](https://codecov.io/gh/pndurette/gTTS)[](https://github.com/pndurette/gTTS/commits/)[](http://pepy.tech/project/gtts)[](https://www.buymeacoffee.com/pndurette)## Features-   Customizable speech-specific sentence tokenizer that allows for unlimited lengths of text to be read, all while keeping proper intonation, abbreviations, decimals and more;-   Customizable text pre-processors which can, for example, provide pronunciation corrections;### Installation    $ pip install gTTS### QuickstartCommand Line:    $ gtts-cli 'hello' --output hello.mp3Module:    >>> from gtts import gTTS    >>> tts = gTTS('hello')    >>> tts.save('hello.mp3')See <http://gtts.readthedocs.org/> for documentation and examples.### DisclaimerThis project is *not* affiliated with Google or Google Cloud. Breaking upstream changes *can* occur without notice. This project is leveraging the undocumented [Google Translate](https://translate.google.com) speech functionality and is *different* from [Google Cloud Text-to-Speech](https://cloud.google.com/text-to-speech/).### Project-   [Questions & community](https://github.com/pndurette/gTTS/discussions)-   [Changelog](CHANGELOG.rst)-   [Contributing](CONTRIBUTING.rst)### Licence[The MIT License (MIT)](LICENSE) Copyright © 2014-2023 Pierre Nicolas Durette & [Contributors](https://github.com/pndurette/gTTS/graphs/contributors)
 |