Metadata-Version: 1.1
Name: numbername
Version: 0.0.6
Summary: Converts integers to number name
Home-page: https://github.com/anand-mishra/pynumbername
Author: Anand Mishra
Author-email: akm.inbox@hotmail.com
License: UNKNOWN
Download-URL: https://pypi.python.org/packages/source/n/numbername/numbername-0.0.6.tar.gz
Description: Installation
        ============
        
        pip install numbername
        
        
        Usage
        =====
        
        
        Convert integers to number name
        
        ::
        
            from numbername import to_number_name
            print to_number_name(1123) 
            #ouputs: one thousand one hundred and twenty three
        
        Convert integers to comma placed number
        
        ::
        
            from numbername import to_comma_placed
            print to_number_name(1123)
            #outputs: 1,123
        
        Limitations
        ===========
        
        1. Works only with non-negative numbers
        2. Works only with integers
        
Keywords: encoding,utf-8,xml
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
