Metadata-Version: 2.1
Name: euros
Version: 2.0.0
Summary: Converts euros number to text
Author-email: Thibaut_S <py@spriet.online>
License: MIT-License
Project-URL: Homepage, https://gitlab.com/outils-jcp/euros
Project-URL: Bug Tracker, https://gitlab.com/outils-jcp/euros/-/issues
Keywords: conversion,euros,french,italian,english
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest
Requires-Dist: ruff
Requires-Dist: black
Requires-Dist: pip-tools
Requires-Dist: twine

# euros
[![](https://img.shields.io/pypi/v/euros)](https://pypi.org/project/euros/)
[![](https://img.shields.io/pypi/dm/euros)](https://pypi.org/project/euros/)
[![](https://gitlab.com/outils-jcp/euros/badges/main/pipeline.svg)](https://gitlab.com/outils-jcp/euros/-/tree/main)

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'
```
