https://github.com/flashcode/nb2l
Convert numbers to literal French text.
https://github.com/flashcode/nb2l
french number python text
Last synced: 9 months ago
JSON representation
Convert numbers to literal French text.
- Host: GitHub
- URL: https://github.com/flashcode/nb2l
- Owner: flashcode
- Created: 2017-02-19T15:21:03.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2025-04-23T06:21:32.000Z (9 months ago)
- Last Synced: 2025-04-23T07:26:15.831Z (9 months ago)
- Topics: french, number, python, text
- Language: Python
- Homepage:
- Size: 62.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSES/GPL-3.0-or-later.txt
Awesome Lists containing this project
README
# Nb2l
[](https://pypi.org/project/nb2l/)
[](https://github.com/flashcode/nb2l/actions?query=workflow%3A%22CI%22)
[](https://github.com/flashcode/nb2l/actions?query=workflow%3A%22CodeQL%22)
Nb2l is a Python script to convert numbers to literal French text.
Numbers from `-999 999 999 999 999 999 999` to `999 999 999 999 999 999 999` are accepted.
The script just requires Python ≥ 3.6.
## Examples
From Python:
```python
>>> from nb2l import nb2l
>>> nb2l(123456)
'cent vingt-trois mille quatre cent cinquante-six'
```
From command line:
```
$ nb2l 0 -15 123456 6824718
zéro
moins quinze
cent vingt-trois mille quatre cent cinquante-six
six millions huit cent vingt-quatre mille sept cent dix-huit
```
## Copyright
Copyright © 2012-2024 [Sébastien Helleu](https://github.com/flashcode)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .