I wrote a simple program to test the API and i’m getting an error saying “InvalidProviderError”, does anyone know how to fix that issue?
text = "Good morning, world" #input("What would you like to say? >> ")
translator = Translator("libre", "auto", languages[choice])
translation = translator.translate(text)
print(f"{languages[choice]}: {translation}")