Metadata-Version: 2.1
Name: indic-num2words
Version: 1.0.1
Summary: Package to convert numbers to words with support of multiple indian languages.
Home-page: https://github.com/sutariyaraj/indic-num2words/
Author: Indic-Num2Words Contributors
Author-email: sutariyaraj77725@gmail.com
License: Apache License
Project-URL: Source, https://github.com/sutariyaraj/indic-num2words/
Project-URL: Tracker, https://github.com/sutariyaraj/indic-num2words/issues
Description: indic-num2words - Convert numbers to words for indian languages
        ===============================================================
        
        The code has been converted into PyPI module for the easy installation and update.
        
        Use Cases:-
        ------------
        1. Speech recognition pre-processing
        2. Language modeling Data pre-processing
        
        
        Usage :-
        ------------
        
        ``indic-num2words`` moduls converts numbers like ``36`` to words like ``छत्तीस``.
        
        The module currently supports the following languages:
        
        * ``en`` (English-India)
        * ``hi`` (Hindi)
        * ``gu`` (Gujarati)
        * ``mr`` (Marathi)
        * ``bn`` (Bengali)
        * ``te`` (Telugu)
        * ``ta`` (Tamil)
        * ``kn`` (Kannada)
        * ``or`` (Oriya)
        * ``pa`` (Punjabi)
        
        Usage
        -----
        
        In code there's only one function to use
        
        .. code:: python
        
            >>> from num_to_words import num_to_word
            >>> num_to_word(36, lang='hi')
            छत्तीस
            >>> num_to_word('४५', lang='hi')
            पैंतालीस
            >>> num_to_word("35,43,57,730", lang='hi')
            पैंतीसकरोड़ तैंतालीसलाख सत्तावनहज़ार सातसौ तीस
            >>> num_to_word(795, lang='kn', separator='-')
            ಏಳುನೂರ-ತೊಂಬತ್ತೈದು
            >>> num_to_word(545589, lang='en', separator=', ', combiner='-')
            five-lakh, forty-five-thousand, five-hundred, eighty-nine
        
        
        
        What's next
        -----------
        
        Add Support for following Languages
        
        * Malayalam
        * Urdu
        * Assamese
        
        check utils/constants.py to add support for any indian languages.
        
        ``Shout out if you want to help :)``
        
Keywords: python,indic,languages,text to speech,TTS,setup.py
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Communications
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
