Created
December 8, 2020 11:49
-
-
Save Abhayparashar31/aaec795a6ca90791b3e806493e6d00ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from googletrans import Translator , LANGUAGES | |
from googletrans.models import Translated | |
language = list(LANGUAGES.values()) | |
translator = Translator() | |
translated=translator.translate(text="How are You??", src = 'english', dest = 'hindi') | |
print(translated) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment