Metadata-Version: 2.1
Name: euros
Version: 1.2
Summary: Converts any amount of euros from numbers into letters
Home-page: https://github.com/ThbtSprt/euros
Author: Thibaut Spriet
Author-email: thibaut@spriet.online
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ThbtSprt/euros/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

# euros
[![](https://img.shields.io/badge/pypi-v1.2-blue)](https://pypi.org/project/euros/)

Converts any amount of euros from numbers into letters, using Python.

**Languages available :**
- [x] french (fr)
- [x] italian (it)
- [x] english UK (en)

**Installation :**
```bash
pip install euros
```

**Examples:**

```python
from euros import fr,it,en

fr.conv(120.99)
#'cent vingt euros et quatre-vingt-dix-neuf centimes'

it.conv(23.81)
#'ventitré euro e ottantuno centesimi'

en.conv(1215.55)
#'one thousand, two hundred and fifteen euros and fifty-five cents'
```


