Skip to main content

Translate, transliterate, get the language of texts in no time with the help of multiple APIs!

Project description

translatepy (originally: translate)

An aggregation of multiple translation API.

Translate, transliterate, get the language of texts in no time with the help of multiple APIs!

PyPI version PyPI - Downloads PyPI - Python Version PyPI - Status GitHub - License GitHub top language CodeQL Checks Badge Pytest Code Size Repo Size Issues

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

You will need Python 3 to use this module

# vermin output
Minimum required versions: 3.2
Incompatible versions:     2

According to Vermin (--backport typing), Python 3.2 is needed for the backport of typing but some may say that it is available for python versions higher than 3.0

Always check if your Python version works with translatepy before using it in production

Installing

You can install it from PyPI with:

pip install translatepy

You can check if you successfully installed it by printing out its version:

python -c "import translatepy; print(translatepy.__version__)"
# output:
translatepy v1.7

List of Services

All of the names belong to their respective rightholders.

Usage

>>> import translatepy
>>> translator = translatepy.Translator()
>>> translator.translate("Hello", "French")
'Bonjour' (type: TranslationResult)
>>> translator.language("こんにちは")
'Japanese' (type: Language)

The Language Class

The language class contains lots of information about a language.

You need to pass the language name or code to the class initialization:

translatepy.Language("French")
# Returns a Language class with the "fr" language
translatepy.Language("en")
# Returns a Language class with the "en" language
translatepy.Language("eng")
# Returns a Language class with the "en" language
translatepy.Language("日本語")
# Returns a Language class with the "ja" language

The Language Class contains both the ISO 639-1 Alpha-2 language code and the ISO 639-2 Alpha-3 language code (the latter is nullable)

It also contains the language name for all of the languages available. (nullable)

Example:

>>> translatepy.Language("日本語").french
'Japonais'

It contains the correct language code for each translation service

It also contains the "similarity" attribute which gives back a number between 0 and 1 and which shows the similarity of the input language with what it found in the language code database.

A translatepy.models.exceptions.UnknownLanguage exception is raised if the given language is unknown.

——> A language with low chance of being the one you've chosen is displayed along with its similarity

The TranslationResult Class

This class contains all of the information needed to get the result of a translation:

  • source: The input text
  • result: The translation result
  • source_language: The input language
  • destination_language: The result language
  • service: The source (service used)

Caching

All of the operations are cached to provide the best performances

You can empty the cache by giving the default value to the variables holding the caches:

translatepy.TRANSLATION_CACHES = {}
translatepy.TRANSLITERATION_CACHES = {}
translatepy.SPELLCHECK_CACHES = {}
translatepy.LANGUAGE_CACHES = {}
translatepy.EXAMPLE_CACHES = {}
translatepy.DICTIONNARY_CACHES = {}

Or by calling the Translator() method "clean_cache"

Warning: translatepy's caches are global: they are used through all instances of Translator()

The Translator Class

It is the High API providing all of the methods and optimizations for translatepy

  • translate: To translate things
  • transliterate: To transliterate things
  • spellcheck: To check the spelling of a text
  • language: To get the language of a text
  • example: To get examples of a word
  • dictionary: To get a list of translations categorized into "featured" and "less common" by DeepL and Linguee
  • text_to_speech: To get an MP3 file containing the speech version of the given text

When something goes wrong or nothing got found, None is returned.

The source language while being most of the time an instance of the Language class can sometimes be a string if the conversion to the Language class failed.

Deployment

This module is currently in development and might contain bugs.

Feel free to use it in production if you feel like it is suitable for your production even if you may encounter issues.

Built With

Authors

License

This project is licensed under the GNU Affero General Public License v3.0 License - see the LICENSE file for details

Dataset

All of the datasets are the result of my searches, computation and sometimes translation.

Please ask me if you want to use them in another project.

(_languages_name_to_code_international.json comes from Google Translate translations (fixed by me sometimes) and other sourcecs and took me about 8 to 10 hours of work to get it done)

Acknowledgments

  • Thanks to @ZhymabekRoman (Zhymabek Roman) for working on #10 and making Yandex more stable!
  • Thanks to @NawtJ0sh for giving me the way to add Microsoft Bing Translate
  • Inspired by py-googletrans (by @ssut) (especially the thread: Issue #268)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

translatepy-1.7.tar.gz (223.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

translatepy-1.7-py3-none-any.whl (239.9 kB view details)

Uploaded Python 3

File details

Details for the file translatepy-1.7.tar.gz.

File metadata

  • Download URL: translatepy-1.7.tar.gz
  • Upload date:
  • Size: 223.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for translatepy-1.7.tar.gz
Algorithm Hash digest
SHA256 03cb3cbda4b92e0ffaee42ce32ee60ff7d5f8c62cbb7b34c25a91a97cf095537
MD5 9ff100637d699cacbfe6d3539e1cca92
BLAKE2b-256 36dad0af4045780967b7c3531a19e4f46b6b4011f440565a10d70ac2c67620e1

See more details on using hashes here.

File details

Details for the file translatepy-1.7-py3-none-any.whl.

File metadata

  • Download URL: translatepy-1.7-py3-none-any.whl
  • Upload date:
  • Size: 239.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for translatepy-1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 02a44edaf0e64476cca1accaa89ae5abff07bad60ce733066a6ebec0c219bb75
MD5 7c61995a9af307f2ac92ad5df83ec2c2
BLAKE2b-256 b27ba94c846f50360da4c5a7398a433a7cdd949326d2cb9b264cb64400e6b441

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page