Skip to content

Instantly share code, notes, and snippets.

@emres
Created July 19, 2010 18:01
Show Gist options
  • Save emres/481738 to your computer and use it in GitHub Desktop.
Save emres/481738 to your computer and use it in GitHub Desktop.
from turkish.deasciifier import Deasciifier
my_ascii_turkish_txt = "Opusmegi cagristiran catirtilar."
deasciifier = Deasciifier(my_ascii_turkish_txt.decode("utf-8"))
my_deasciified_turkish_txt = deasciifier.convert_to_turkish()
print my_deasciified_turkish_txt.encode("utf-8")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment