Wylie conversion#

For introduction how EWTS Wylie works, see Teaching EWTS by Alexandru Anton-Luca. If you want to learn, how to work with Tibetan computer keyboards, this is a useful resource.

../_images/ewts_converter.jpg

Online tool#

The following tool converts between Wylie EWTS (Extended Wylie) and Tibetan Unicode:

Programming#

Python#

Using Esukhia’s pyewts, install with pip install pyewts:

import pyewts
converter=pyewts.pyewts()
print(converter.toUnicode("oM AHhUM:"))
print(converter.toWylie("སེམས་ཉིད་"))

Output:

ཨོཾ་ཨཱཿཧཱུཾ༔
sems nyid 

For an example jupyter notebook, see: computational dharma

Other implementations#

References#