| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python3-gTTS | Distribution: SUSE Linux Enterprise 15 SP5 |
| Version: 2.1.1 | Vendor: openSUSE |
| Release: bp155.2.12 | Build date: Mon May 22 14:08:56 2023 |
| Group: Development/Languages/Python | Build host: cloud102 |
| Size: 171452 | Source RPM: python-gTTS-2.1.1-bp155.2.12.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://github.com/pndurette/gTTS | |
| Summary: Python module to create MP3 files from spoken text via the Google TTS API | |
gTTS is a Python interface for Google's Text to Speech API. An MP3 file may be created with the gTTS module or the gtts-cli command line utility. It allows unlimited lengths to be spoken by tokenizing long sentences where the speech would naturally pause.
MIT
* Tue Feb 16 2021 Yuchen Lin <mlin+factory@suse.de>
- Do not build the python2 package since python-readme_renderer 25.0
* Mon Apr 06 2020 Marketa Calabkova <mcalabkova@suse.com>
- update to 2.1.1
* Debug mode now uses a copy of locals() to prevent RuntimeError (`#213 <https://github.com/pndurette/gTTS/issues/213>`_)
* Added the ability to customize the Google Translate URL hostname.
This is useful when ``google.com`` might be blocked within a network but
a local or different Google host (e.g. ``google.cn``) is not
* Pre-generated TTS API request URLs can now be obtained instead of
writing an ``mp3`` file to disk (for example to be used in an
external program)
* New ``--tld`` option to match the new ``gtts`` customizable hostname
* Added Python 3.8 support
* Thu Sep 12 2019 Tomáš Chvátal <tchvatal@suse.com>
- Update to 2.0.4:
* gTTS is now built as a wheel package (Python 2 & 3) (#181)
- Rebase patch remove-pip-requirement.patch
* Sun Feb 10 2019 Antonio Larrosa <alarrosa@suse.com>
- Change the egg requirement to use the right name, beautifulsoup4,
instead of bs4
* Sat Feb 02 2019 Antonio Larrosa <alarrosa@suse.com>
- Update to 2.0.3:
* Added new tokenizer case for ':' preventing cut in the middle of
a time notation
- Update to 2.0.2:
Features
* Added Python 3.7 support, modernization of packaging, testing and CI
Bugfixes
* Fixed language retrieval/validation broken from new Google Translate page
- Update to 2.0.1:
Bugfixes
* Fixed an UnicodeDecodeError when installing gTTS if system locale was
not utf-8
Improved Documentation
* Added Pre-processing and tokenizing > Minimizing section about the API's
100 characters limit and how larger tokens are handled
- Update to 2.0.0:
Features
* The gtts module
+ New logger ("gtts") replaces all occurrences of print()
+ Languages list is now obtained automatically (gtts.lang)
+ Added a curated list of language sub-tags that have been observed to
provide different dialects or accents (e.g. "en-gb", "fr-ca")
+ New gTTS() parameter lang_check to disable language checking.
+ gTTS() now delegates the text tokenizing to the API request methods (i.e.
write_to_fp(), save()), allowing gTTS instances to be modified/reused
+ Rewrote tokenizing and added pre-processing (see below)
+ New gTTS() parameters pre_processor_funcs and tokenizer_func to configure
pre-processing and tokenizing (or use a 3rd party tokenizer)
+ Error handling:
- Added new exception gTTSError raised on API request errors. It attempts
to guess what went wrong based on known information and observed
behaviour
- gTTS.write_to_fp() and gTTS.save() also raise gTTSError on gtts_token
error
- gTTS.write_to_fp() raises TypeError when fp is not a file-like object
or one that doesn't take bytes
- gTTS() raises ValueError on unsupported languages (and lang_check is
True)
- More fine-grained error handling throughout (e.g. request failed vs.
request successful with a bad response)
* Tokenizer (and new pre-processors):
+ Rewrote and greatly expanded tokenizer (gtts.tokenizer)
+ Smarter token 'cleaning' that will remove tokens that only contain
characters that can't be spoken (i.e. punctuation and whitespace)
+ Decoupled token minimizing from tokenizing, making the latter usable
in other contexts
+ New flexible speech-centric text pre-processing
+ New flexible full-featured regex-based tokenizer
(gtts.tokenizer.core.Tokenizer)
+ New RegexBuilder, PreProcessorRegex and PreProcessorSub classes to make
writing regex-powered text pre-processors and tokenizer cases easier
+ Pre-processors:
- Re-form words cut by end-of-line hyphens
- Remove periods after a (customizable) list of known abbreviations (e.g.
"jr", "sr", "dr") that can be spoken the same without a period
- Perform speech corrections by doing word-for-word replacements from a
(customizable) list of tuples
+ Tokenizing:
- Keep punctuation that modify the inflection of speech (e.g. "?", "!")
- Don't split in the middle of numbers (e.g. "10.5", "20,000,000")
- Don't split on "dotted" abbreviations and accronyms (e.g. "U.S.A")
- Added Chinese comma (","), ellipsis ("…") to punctuation list to
tokenize on
* The gtts-cli command-line tool
- Rewrote cli as first-class citizen module (gtts.cli), powered by Click
- Windows support using setuptool's entry_points
- Better support for Unicode I/O in Python 2
- All arguments are now pre-validated
- New --nocheck flag to skip language pre-checking
- New --all flag to list all available languages
- Either the --file option or the <text> argument can be set to "-" to
read from stdin
- The --debug flag uses logging and doesn't pollute stdout anymore
Bugfixes
* _minimize(): Fixed an infinite recursion loop that would occur when a
token started with the miminizing delimiter (i.e. a space)
* _minimize(): Handle the case where a token of more than 100 characters
did not contain a space (e.g. in Chinese).
* Fixed an issue that fused multiline text together if the total number of
characters was less than 100
* Fixed gtts-cli Unicode errors in Python 2.7
Deprecations and Removals
* Dropped Python 3.3 support
* Removed debug parameter of gTTS (in favour of logger)
* gtts-cli: Changed long option name of -o to --output instead of
- -destination
* gTTS() will raise a ValueError rather than an AssertionError on
unsupported language
Improved Documentation
* Rewrote all documentation files as reStructuredText
* Comprehensive documentation writen for Sphinx, published to
http://gtts.readthedocs.io
* Changelog built with towncrier
Misc
* Major test re-work
* Language tests can read a TEST_LANGS enviromment variable so not all
language tests are run every time.
* Added AppVeyor CI for Windows
* PEP 8 compliance
- Add remove-pip-requirement.patch to remove the dependency on pip to build
the package.
* Thu May 03 2018 alarrosa@suse.com
- Run spec-cleaner
* Thu May 03 2018 alarrosa@suse.com
- Use %license for the LICENSE file
* Sun Mar 04 2018 jengelh@inai.de
- Focus description on gTTS.
* Mon Sep 04 2017 alarrosa@suse.com
- Initial release of python-gTTS 1.2.2
/usr/bin/gtts-cli /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info/PKG-INFO /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info/SOURCES.txt /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info/dependency_links.txt /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info/entry_points.txt /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info/requires.txt /usr/lib/python3.6/site-packages/gTTS-2.1.1-py3.6.egg-info/top_level.txt /usr/lib/python3.6/site-packages/gtts /usr/lib/python3.6/site-packages/gtts/__init__.py /usr/lib/python3.6/site-packages/gtts/__pycache__ /usr/lib/python3.6/site-packages/gtts/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/cli.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/cli.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/lang.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/lang.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/tts.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/tts.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/utils.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/utils.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/version.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/__pycache__/version.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/cli.py /usr/lib/python3.6/site-packages/gtts/lang.py /usr/lib/python3.6/site-packages/gtts/tests /usr/lib/python3.6/site-packages/gtts/tests/__init__.py /usr/lib/python3.6/site-packages/gtts/tests/__pycache__ /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_cli.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_cli.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_lang.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_lang.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_tts.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_tts.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_utils.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tests/__pycache__/test_utils.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tests/test_cli.py /usr/lib/python3.6/site-packages/gtts/tests/test_lang.py /usr/lib/python3.6/site-packages/gtts/tests/test_tts.py /usr/lib/python3.6/site-packages/gtts/tests/test_utils.py /usr/lib/python3.6/site-packages/gtts/tokenizer /usr/lib/python3.6/site-packages/gtts/tokenizer/__init__.py /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__ /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/core.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/core.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/pre_processors.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/pre_processors.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/symbols.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/symbols.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/tokenizer_cases.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/__pycache__/tokenizer_cases.cpython-36.pyc /usr/lib/python3.6/site-packages/gtts/tokenizer/core.py /usr/lib/python3.6/site-packages/gtts/tokenizer/pre_processors.py /usr/lib/python3.6/site-packages/gtts/tokenizer/symbols.py /usr/lib/python3.6/site-packages/gtts/tokenizer/tokenizer_cases.py /usr/lib/python3.6/site-packages/gtts/tts.py /usr/lib/python3.6/site-packages/gtts/utils.py /usr/lib/python3.6/site-packages/gtts/version.py /usr/share/doc/packages/python3-gTTS /usr/share/doc/packages/python3-gTTS/CHANGELOG.rst /usr/share/doc/packages/python3-gTTS/README.md /usr/share/licenses/python3-gTTS /usr/share/licenses/python3-gTTS/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Feb 9 16:24:48 2026