Skip to main content

Utilizes translationbackends in trivial from→to texteditor

Project description

tk-translate is a PySimpleGUI variant of PageTranslate. It provides a terse GUI to get some text translated using one of the various services from PT or Deep-Translator. Albeit it has no config dialog, thus won't pacify API-key requirements. It's mostly just meant for testing.

🗔

Presents two input boxes, some buttons, for plain text translations. Usage:

  • Insert text into left input
  • Select backend
  • Change target language
  • Hit translate

Defaults must be edited in tk_translate/init.py conf={}. dingonyms output doesn't look as useful in a plain text field. Other CLI tools can be edited into the combobox however. The new [File] mode resurrects direct content.xml translation for OpenOffice .odt or text files.

translationbackends usage

There's two options to instantiate the backends. The default assign_service() expects a dictionary of parameters, one of which decides on the instance used:

import tk_translate.translationbackends as tb
service = tb.assign_service({
    "backend": "DeepL Web",
    "from": "auto",
    "lang": "en",
    "quick": 1,
})
engl = service.translate("¿Donde esta la pizza?")

While the individual classes also would allow keyword arguments:

service = tb.GoogleAjax(lang="en")
text = service.linebreakwise(text)

Using from= does require a syntax workaround however:

service = tb.PonsWeb(lang="en", **{"from": "it"})

Which works as well for all arguments. (Most being optional.) MyMemory benefits from an email=, while the commercial providers want an api_key=.

deep-translator

With two exceptions, deep-translator is the better option. translationbackends merely retains some Python2 compatiblility (for good old OpenOffice). Instantiating it from tb.DeepTranslator(backend="Yandex") required a second name lookup in TB.

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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

tk_translate-0.4-py3-none-any.whl (22.0 kB view hashes)

Uploaded Python 3

Supported by

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