- Autogenerated Docs on readthedocs (might be broken).
- Manually and periodically generated docs here
- For detailed examples and help, please see individual module files in this package.
sudo pip install indic_transliteration -Usudo pip install git+https://github.com/sanskrit-coders/indic_transliteration/@master -U- Web.
In [1]: from indic_transliteration import sanscript
...: from indic_transliteration.sanscript import SchemeMap, SCHEMES, transliterate
...:
In [2]: data = 'idam adbhutam'
In [3]: print(transliterate(data, sanscript.HK, sanscript.TELUGU))
ఇదమ్ అద్భుతమ్
In [4]: print(transliterate(data, sanscript.ITRANS, sanscript.DEVANAGARI))
इदम् अद्भुतम्
In [5]: scheme_map = SchemeMap(SCHEMES[sanscript.VELTHUIS], SCHEMES[sanscript.TELUGU])
In [6]: print(transliterate(data, scheme_map=scheme_map))
ఇదమ్ అద్భుతమ్ assert sanscript.SCHEMES[sanscript.ITRANS].fix_lazy_anusvaara("shaMkara") == "sha~Nkara"
assert sanscript.SCHEMES[sanscript.ITRANS].fix_lazy_anusvaara("saMchara") == "sa~nchara"
assert sanscript.SCHEMES[sanscript.ITRANS].fix_lazy_anusvaara("saMvara") == "sav.Nvara"
assert sanscript.SCHEMES[sanscript.ITRANS].fix_lazy_anusvaara("saMyukta") == "say.Nyukta"
assert sanscript.SCHEMES[sanscript.ITRANS].fix_lazy_anusvaara("saMlagna") == "sal.Nlagna"
assert sanscript.SCHEMES[sanscript.DEVANAGARI].fix_lazy_visarga("अन्तः पश्य") == "अन्तᳶ पश्य"
assert sanscript.SCHEMES[sanscript.DEVANAGARI].fix_lazy_visarga("अन्तः कुरु") == "अन्तᳵ कुरु"
assert sanscript.SCHEMES[sanscript.OPTITRANS].to_lay_indian("taM jitvA") == "tam jitva"
assert sanscript.SCHEMES[sanscript.OPTITRANS].to_lay_indian("kRShNa") == "krishna"
In [1]: from indic_transliteration import xsanscript
...: from indic_transliteration.xsanscript import SchemeMap, SCHEMES, transliterate
...:
In [2]: data = 'असय औषधिः ग्रन्थः। ऎ ऒ यॆक्ककॊ?'
In [3]: print(transliterate(data, xsanscript.DEVANAGARI, xsanscript.KANNADA))
ಅಸಯ ಔಷಧಿಃ ಗ್ರನ್ಥಃ। ಎ ಒ ಯೆಕ್ಕಕೊ? converter = tech_hindi.DVTTVedicConverter()
text_in = " +<=hÉ *1* +EòÉ®úÉä Ê´É´ÉÞiÉ ={ÉÊnù¹]õ& |ÉÉÊGòªÉÉnù¶ÉɪÉÉÆ SÉäiªÉjÉ \"+ +' (ºÉÚ.8-4-68) "
output = converter.convert(text_in)
Installing the package with pip also installs a console script, sanscript which can used to transliterate files, standard input or input strings from the command-line.
Note: Refer sanscript --help for the latest information.
$ sanscript [OPTIONS] [INPUT_STRING]Arguments:
[INPUT_STRING]:
Input string to transliterate from the given '--from' scheme to the given '--to' scheme.
Note: This input will be ignored if '--input-file' option is specified.
Options:
-
-f, --from TEXT: [required]
Name of the scheme FROM which the input is to be transliterated.
Note: Use--helpto see the list of valid scheme names. -
-t, --to TEXT: [required]
Name of the scheme TO which the input is to be transliterated.
Note: Use--helpto see the list of valid scheme names. -
-i, --input-file FILENAME:
Input file path to transliterate.
Note: When this option is used, input from theINPUT_STRINGargument will be ignored. -
-o, --output-file FILENAME:
Output file path to write transliterated output.
Note: If it is not specified or its argument is '-', the output is written to Standard Output.
Enabling auto-completion:
--install-completion: Install completion for the current shell.--show-completion: Show completion for the current shell, to copy it or customize the installation.
Help:
--help: Show usage information and other details.
-
Read input from command's argument.
Example:
$ sanscript --from hk --to iast "rAmAyaNa"Output:
rāmāyaṇa -
Read from input file. File path is passed to
--input-file/-ioption.Example:
$ sanscript --from hk --to iast -i ramayana.txtOutput:
rāmāyaṇa -
Read from Standard Input
-.Example: (Using pipe)
$ cat ramayana.txt | sanscript --from hk --to iast -i -OR: (Using input redirection)
$ sanscript --from hk --to iast -i - < ramayana.txtOutput:
rāmāyaṇa
-
To Standard Output
Example:
$ sanscript --from hk --to iast "rAmAyaNa"OR:
$ sanscript --from hk --to iast "rAmAyaNa" -o -Output:
rāmāyaṇa -
To file passed to '--ouput-file / -o' option
Example:
$ sanscript --from hk --to iast "rAmAyaNa" -o output.txtOutput:
Output written to: /home/user/output.txt
Have a problem or question? Please head to github.
- ~/.pypirc should have your pypi login credentials.
python setup.py bdist_wheel
twine upload dist/* --skip-existing
- sphinx html docs can be generated with
cd docs; make html
Run pytest in the root directory.
