Skip to content

Instantly share code, notes, and snippets.

@dasgoll
Created March 12, 2014 20:52
Show Gist options
  • Save dasgoll/9516045 to your computer and use it in GitHub Desktop.
Save dasgoll/9516045 to your computer and use it in GitHub Desktop.
from translate import Translator
goodmorning_text = 'good morning'
to_lang = 'ar'
translator= Translator(to_lang, 'en')
out = translator.translate(goodmorning_text)
print(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment