Modules to convert numbers to words. Easily extensible.
Project description
num2words - Convert numbers to words in multiple languages
num2words is a library that converts numbers like 42 to words like forty-two. It supports multiple languages (English, French, Spanish, German and Lithuanian) and can even generate ordinal numbers like forty-second (altough this last feature is a bit buggy at the moment).
The project is hosted on https://github.com/savoirfairelinux/num2words
Installation
The easiest way to install num2words is to use pip:
pip install num2words
Otherwise, you can download the source package and then execute:
python setup.py install
The test suite in this library new, so it’s rather thin, but it can be ran with:
python setup.py test
Usage
There’s only one function to use:
>>> from num2words import num2words >>> num2words(42) forty-two >>> num2words(42, ordinal=True) forty-second >>> num2words(42, lang='fr') quarante-deux
Besides the numerical argument, there’s two optional arguments.
ordinal: A boolean flag indicating to return an ordinal number instead of a cardinal one.
lang: The language in which to convert the number. Supported values are:
en (English, default)
ar (Arabic)
fr (French)
de (German)
es (Spanish)
lt (Lithuanian)
lv (Latvian)
en_GB (British English)
en_IN (Indian English)
no (Norwegian)
pl (Polish)
ru (Russian)
dk (Danish)
pt_BR (Brazilian Portuguese)
he (Hebrew)
it (Italian)
You can supply values like fr_FR, the code will be correctly interpreted. If you supply an unsupported language, NotImplementedError is raised. Therefore, if you want to call num2words with a fallback, you can do:
try: return num2words(42, lang=mylang) except NotImplementedError: return num2words(42, lang='en')
History
num2words is based on an old library, pynum2word created by Taro Ogawa in 2003. Unfortunately, the library stopped being maintained and the author can’t be reached. There was another developer, Marius Grigaitis, who in 2011 added Lithuanian support, but didn’t take over maintenance of the project.
I am thus basing myself on Marius Grigaitis’ improvements and re-publishing pynum2word as num2words.
Virgil Dupras, Savoir-faire Linux
Changelog
Version 0.5.5 – 2017/07/02
Add Arabic localization (#72)
Add Spanish-Colombian and Spanish-Venezuelan localization (#67)
Add VietNam localization (#61)
Add Italian localization (#56, #59)
Improve Russian localization (#62)
Improve Polish localization (#58)
Version 0.5.4 – 2016/10/18
Tons of new languages!
Add Polish localization. (#23)
Add Swiss-French localization. (#38)
Add Russian localization. (#28, #46, #48)
Add Indonesian localization. (#29)
Add Norwegian localization. (#33)
Add Danish localization. (#40)
Add Brazilian localization. (#37, #47)
Improve German localization. (#25, #27, #49)
Improve Lithuanian localization. (#52)
Improve floating point spelling. (#24)
Version 0.5.3 – 2015/06/09
Fix packaging issues. (#21, #22)
Version 0.5.2 – 2015/01/23
Added Latvian localization. (#9)
Improved Spanish localization. (#10, #13, #14)
Improved Lithuanian localization. (#12)
Version 0.5.1 – 2014/03/14
Added Python 3 support with 2to3. (#3)
Fixed big numbers in spanish. (#2)
Fixed bugs in tanslation from 30 to 40 in spanish. (#4)
Fixed word joining in english. (#8)
Version 0.5.0 – 2013/05/28
Created num2words based on the old pynum2word project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file num2words-0.5.5.tar.gz
.
File metadata
- Download URL: num2words-0.5.5.tar.gz
- Upload date:
- Size: 37.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29570bf3ff113f2a7eb508d75bbad19ae6934360d8a5e68ea8ff9ce29f02da9d |
|
MD5 | ddca538a9bb52c8a28dcf187c5a0cdcc |
|
BLAKE2b-256 | 7ac7d9c054399870f94700cd3ecb4797065d222f639cfcc95f0a2106c64245b1 |
File details
Details for the file num2words-0.5.5-py2.py3-none-any.whl
.
File metadata
- Download URL: num2words-0.5.5-py2.py3-none-any.whl
- Upload date:
- Size: 57.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84e3ef9a7539135c67b1642156ffb22dc14946b342d1f0a9503e1f31374c37e2 |
|
MD5 | ee530b71e5432c2acd7d5d5388d94aab |
|
BLAKE2b-256 | 5fd81c1fb47cce56ff2cc1f5eb2740f2679045769778a746fbf9ebff1d70a63e |