google-translator-toolkit

Googletrans not detecting language

Googletrans not detecting language Question: Good morning everyone, I am using googleTrans in my code to translate a list of sentence. It worked perfectly until today. Now when I run it, it perceive everything as English and then not making any translation. One classical code I tried to do a test: from googletrans import Translator …

Total answers: 1

Why am I getting a ModuleNotFoundError when using googletrans

Why am I getting a ModuleNotFoundError when using googletrans Question: I have pip installed googletrans and more or less copied this code off a video but for some reason it cannot find the module. from googletrans import Translator text=(“How to convert some text to multiple languages”) destination_langauge={ “Spanish”: “es”, “Chinese”:”zh-CN”, “Italian”:”it”} translator=Translator() for key, value …

Total answers: 3