Skip to content

libindic/Transliteration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Transliteration

Build Status

Transliteration module provides way to transliterate from English to any Indian Language or from any Indian Language other Indian Language. This module is a part of libindic.

Setting up

python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
pip install .

Usage

source env/bin/activate
python
from libindic.transliteration import getInstance
t = getInstance()
text = u"ನಮಸ್ಕಾರ"
t_text = t.transliterate(text, "ml_IN")
print t_text #"നമസ്കാര"

for more read the docs