Skip to content

Instantly share code, notes, and snippets.

@cd060
Last active March 6, 2024 21:10
Show Gist options
  • Select an option

  • Save cd060/e5a940eb3b1ea5a374e556e507b09552 to your computer and use it in GitHub Desktop.

Select an option

Save cd060/e5a940eb3b1ea5a374e556e507b09552 to your computer and use it in GitHub Desktop.
translates strings to english
import googletrans
from googletrans import *
def text_to_en(text):
translator = googletrans.Translator()
translation = translator.translate(text, dest='en')
return translation.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment