MCPcopy Create free account
hub / github.com/geekcomputers/Python / text_translator

Function text_translator

personal_translator.py:17–20  ·  view source on GitHub ↗
(Text)

Source from the content-addressed store, hash-verified

15
16# make a simple function that will translate any language to english
17def text_translator(Text):
18 translator = Translator()
19 translated = translator.translate(Text, dest="en")
20 return translated.text
21
22
23text_translator(

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected