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!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…