Metadata-Version: 2.1
Name: deeptranslit
Version: 1.0.1
Summary: Transliteration with Deep Learning
Home-page: https://github.com/bedapudi6788/deeptranslit
Author: BEDAPUDI PRANEETH
Author-email: praneethbedapudi@gmail.com
License: GPLv3
Description: 
        # DeepTranslit: For better transliteration of Indic languages.
        
        Documentation is available at http://bpraneeth.com/docs/deeptranslit
        
        # Usage
        ```
        from deeptranslit import DeepTranslit
        
        transliterator = DeepTranslit('hindi')
        # Currently hindi (hi) is the only supported language.
        
        transliterator.transliterate('mai mbbs complete karliya')
        [('मैं एमबीबीएस कम्प्लीट करलिया', 4), ('मैं एमबीबीएस कंप्लीट करलिया', 4), ('मैं एमबीबी कम्प्लीट करलिया', 4)]
        
        ```
        
        # Notes:
        
        1. The dataset is created from various sources (translation corpora, wikipedia parallel titles etc..).
        2. Transliteration for low resource languages is not an easy task and will never be perfect. This module is still in beta and not perfect.
        
        # TODO:
        
        1. Add local caching for faster transliteration.
        2. Support for more languages.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
