Metadata-Version: 2.1
Name: num-management
Version: 1.0
Summary: This Library is used for manage numbers with different methods. Method int2str is included in this library.
Home-page: https://bitbucket.org/onprem/olvera_carlos_interview-numbertostring-python/src/caor_int_to_string/
Author: Carlos Alberto Olvera Rodriguez
Author-email: orcas40@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

num_management
================

This Library is used for manage numbers with different methods.

Methods:

    int2str

    This method convert integer values to string value 

Example: **25** is converted to **"twenty five"**

**Installation and Use :**
****
To install in your console (assuming you have Python installed Version >=3.6)
enter the command 
```bash
pip install num_management
```
Then run python REPL
```bash
python
```
To use the method int2str import the module num_management
and execute int2str(n)
```REPL
>>> from num_management import int2str
>>> int2str(45)
'forty five'
>>> int2str(55)
'fifty-five'
```
