Search code examples
pythontranslationdeepl

How to resolve TranslationError: DeepL call resulted in a unknown result? Python Pydeepl


I wanted to use pydeepl in order to translate some sentences on python. I have installed pydeepl and reproduced the same code as the main page of this library:

import pydeepl
sentence = 'I like turtles.'
from_language = 'EN'
to_language = 'ES'

translation = pydeepl.translate(sentence, to_language, from_lang=from_language)
print(translation)

Unfortunately I get this error:
TranslationError: DeepL call resulted in a unknown result.

Can anyone help please? Thanks in advance!


Solution

  • It looks like the API is ONLY available if you pay, not free anymore...