Metadata-Version: 2.1
Name: banglanum2words
Version: 0.0.1
Summary: Converts a Bangla numeric string to literal words.
Home-page: https://github.com/dv66/bangla-number-in-words
Author: Syed Mostofa Monsur
Author-email: mostofamonsur9396@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/dv66/bangla-number-in-words/issues
Platform: UNKNOWN
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

# Bangla Number in Words
Converts a Bangla numeric string to literal words.
### Install
```bash
$ pip install banglanum2words
```

### Usage
```bash
>>> from banglanum2words import num_convert
>>> num_convert.number_to_bangla_words("১২৩৪")
'এক হাজার দুই শত চৌত্রিশ'
>>> num_convert.number_to_bangla_words("৩৪১২৩৪")
'তিন লক্ষ একচল্লিশ হাজার দুই শত চৌত্রিশ'
```


