Metadata-Version: 2.2
Name: currency_to_words
Version: 0.1.0
Summary: A library to convert currency to words in Indian numbering system
Home-page: https://github.com/Madhan-raio-97/currency_to_words
Author: Madhanagopal Mallayan
Author-email: madhanagopalpro@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
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# Currency to Words (Indian System)

This is a Python package to convert numeric currency amounts into words, following the Indian numbering system.

## Installation

You can install the package using pip:

```bash
pip install currency_to_words


from currency_to_words import convert_currency_to_words

amount = 1234567.89
print(convert_currency_to_words(amount))  # Output: One Lakh Twenty Three Thousand Four Hundred Sixty Seven Rupees and Eighty Nine Paise
