Translate text, files, markup and BeautifulSoup.
Project description
tranzlate
A wrapper around the translators package, providing a simpler interface for the translation of text, files, markup and BeautifulSoup.
Installation
Perform a quick install with pip:
pip install tranzlate
Usage
Ensure you have
beautifulsoup4installed if you want to translate markup or BeautifulSoup. Runpip install beautifulsoup4in your terminal.
Create a translator
The Translator class is the main interface for the package. It can be used to translate text, bytes, files, markup and BeautifulSoup. To create an instance of the Translator class, simply import the tranzlate package and instantiate a Translator:
import tranzlate
translator = tranzlate.Translator()
Use a custom translation engine
By default, the Translator class uses Bing Translator as its translation engine. Based on test results, Bing is the most reliable translation engine. However, you can use any translation engine that is supported by the translators package by passing the name of the engine to the Translator class on instantiation:
In this example, we will use Google Translate as our translation engine:
import tranzlate
google = tranzlate.Translator('google')
To get a list of all supported translation engines:
import tranzlate
print(tranzlate.Translator.engines())
# Output:
# ['bing', 'google', 'yandex', 'baidu', 'sogou', 'tencent', 'deepl', 'alibaba', ...]
Detect language
import tranzlate
text = 'Good Morning!'
language = tranzlate.Translator.detect_language(text)
print(language)
# Output: en
Translate text, bytes, markup and BeautifulSoup
Translate text, markup or a soup using the translate method of the Translator class. The translate method is a general purpose method that can be used to translate text, bytes and markup.
Translate text/bytes
import tranzlate
bing = tranzlate.Translator("bing")
text = 'Good Morning!'
translation = bing.translate(text, target_lang='yo')
print(translation)
# Output: Eku ojumo!
Translate markup
import tranzlate
bing = tranzlate.Translator("bing")
markup = '<p>Good Morning!</p>'
translated_markup = bing.translate(markup, target_lang='yo', is_markup=True)
print(translated_markup)
# Output: <p>Eku ojumo!</p>
Translate BeautifulSoup
import tranzlate
from bs4 import BeautifulSoup
baidu = tranzlate.Translator("baidu")
markup = '<p>Good Morning!</p>'
soup = BeautifulSoup(markup, 'html.parser')
translated_soup = baidu.translate_soup(soup, target_lang='fr')
However, there are specialized methods for translating text, markup and BeautifulSoup objects. These methods are translate_text, translate_markup and translate_soup respectively.
Translate files
To translate files, we use the translate_file method.
import tranzlate
bing = tranzlate.Translator() # Bing is used by default
translated_file = bing.translate_file('path/to/file.txt', src_lang="en", target_lang='yo')
It is advisable to specify the source language when performing translations as it helps the translation engine to provide more accurate translations.
Use a proxy
To use a proxy, simply pass your proxies on translation:
import tranzlate
deepl = tranzlate.Translator("deepl")
text = 'Good Morning!'
translation = deepl.translate(text, target_lang='yo', proxies={'https': 'https://<proxy>:<port>'})
print(translation)
Other methods
import tranzlate
google = tranzlate.Translator("google")
bing = tranzlate.Translator("bing")
Get supported languages
Get a list of all supported (source) languages by the translator's engine:
print(google.supported_languages)
Check if a language is supported
Check if a (source) language is supported by the translator's engine:
is_supported = google.supports_language('yo')
print(is_supported)
# Output: True
Check if a language pair is supported
Check if a language pair is supported by the translator's engine:
is_supported = bing.supports_pair(src_lang='en', target_lang='yo')
print(is_supported)
# Output: True
Get a list of supported target languages for a source language
Get a list of supported target languages for a source language:
supported_target_languages = bing.get_supported_target_languages('en')
print(supported_target_languages)
Testing
To run tests, simply run the following command in the root directory of your cloned repository:
python -m unittest discover tests "test_*.py"
Contributing
Contributions are welcome. Please open an issue or submit a pull request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tranzlate-1.0.0-py3-none-any.whl.
File metadata
- Download URL: tranzlate-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01e5da477fdbedcf3a94d5c4447276a37429215082a55a9eaefd714c0a5a2ee0
|
|
| MD5 |
41c6e3f8be517090a3df776eafbb0709
|
|
| BLAKE2b-256 |
06243c36da102cea49813511ae51914ac5403cf1139ddc4f11fdd1dd6679c2c4
|