We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to know which languages are supported in each service, i expect every service to return the languages they support.
from deep_translator import (GoogleTranslator, ChatGptTranslator, MicrosoftTranslator, PonsTranslator, LingueeTranslator, MyMemoryTranslator, YandexTranslator, PapagoTranslator, DeeplTranslator, QcriTranslator, single_detection, batch_detection) print("GoogleTranslator:") google_list = GoogleTranslator().get_supported_languages() print(google_list) print("ChatGptTranslator:") google_list = ChatGptTranslator().get_supported_languages() print(google_list) print("MyMemoryTranslator:") mymemory_list = MyMemoryTranslator().get_supported_languages() print(mymemory_list) print("MicrosoftTranslator:") microsoft_list = MicrosoftTranslator().get_supported_languages() print(microsoft_list) print("PonsTranslator:") pons_list = PonsTranslator().get_supported_languages() print(pons_list) print("LingueeTranslator:") linguee_list = LingueeTranslator().get_supported_languages() print(linguee_list) print("YandexTranslator:") yandex_list = YandexTranslator().get_supported_languages() print(yandex_list) print("PapagoTranslator:") papago_list = PapagoTranslator().get_supported_languages() print(papago_list) print("DeeplTranslator:") deepl_list = DeeplTranslator().get_supported_languages() print(deepl_list) print("QcriTranslator:") qcri_list = QcriTranslator().get_supported_languages() print(qcri_list)
it crashes on everyone except google.
Did you make it general where you just need to send in the name of the language and deep_translator maps it automatically for each service?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
I want to know which languages are supported in each service, i expect every service to return the languages they support.
What I Did
it crashes on everyone except google.
Did you make it general where you just need to send in the name of the language and deep_translator maps it automatically for each service?
The text was updated successfully, but these errors were encountered: