deepl translate
1.0.0
Un paquete de Python no oficial para traducir texto usando DeepL.
pip install deepl-translate
Actualmente se admiten los siguientes idiomas:
Abreviatura | Idioma | Escribir en su propio idioma |
---|---|---|
bg | búlgaro | Български |
ZH | Chino | 中文 |
CS | checo | Český |
DA | danés | Dansk |
Países Bajos | Holandés | Países Bajos |
ES | Inglés | Inglés |
hora del este | estonio | Este |
FI | finlandés | Suomi |
FR | Francés | francés |
Delaware | Alemán | alemán |
EL | Griego | Ελληνικά |
HU | húngaro | magiar |
ÉL | italiano | italiano |
JA | japonés | 日本語 |
LV | letón | Latviešu |
LT | lituano | Lietuvių |
PL | Polaco | Polonia |
PT | portugués | portugués |
RO | rumano | Română |
RU | ruso | ruso |
SK | eslovaco | Eslovenia |
SL | esloveno | esloveno |
ES | Español | Español |
SV | sueco | Svenská |
Puede ingresar la abreviatura o el idioma escrito en inglés.
deepl --help
usage: deepl [-h] [--version] [--formal | --informal] [-t TEXT | -f FILE] source_language target_language
Python client to translate texts using deepl.com
positional arguments:
source_language Source language of your text
target_language Target language of your desired text
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
--formal Use formal tone in translation
--informal Use informal tone in translation
-t TEXT, --text TEXT Text to be translated
-f FILE, --file FILE File to be translated
Esto traducirá un texto del español ( ES
) al ruso ( RU
):
deepl spanish russian -t " ¡Buenos días! "
Доброе утро!
Esto traducirá el texto del archivo ( test.txt
) del italiano ( IT
) al portugués ( PT
):
deepl IT PT --file test.txt
Esto traducirá un texto del español ( ES
) al ruso ( RU
) en tono formal :
deepl ES RU --text " ¿Cómo te llamas? " --formal
Как Вас зовут?
Nota: informal sería " Как тебя зовут? "
Esto traducirá un texto japonés ( JP
) al alemán ( DE
) en tono informal :
deepl JP DE --text "お元気ですか? " --informal
Wie geht es dir?
Nota: formal sería " Wie geht es Ihnen ? "
Esto traducirá un texto chino ( ZH
) al holandés ( NL
):
import deepl
deepl . translate ( source_language = "ZH" , target_language = "NL" , text = "你好" )
'Hallo'
Esto traducirá un texto danish
al german
en tono informal:
import deepl
deepl . translate ( source_language = "danish" , target_language = "german" , text = "Ring til mig!" , formality_tone = "informal" )
'Ruf mich an!'