2013-05-28 11:34:53 -04:00
|
|
|
num2words - Convert numbers to words in multiple languages
|
|
|
|
|
==========================================================
|
|
|
|
|
|
2017-12-19 04:51:58 -08:00
|
|
|
.. image:: https://img.shields.io/pypi/v/num2words.svg
|
|
|
|
|
:target: https://pypi.python.org/pypi/num2words
|
|
|
|
|
|
2017-02-27 16:05:21 -05:00
|
|
|
.. image:: https://travis-ci.org/savoirfairelinux/num2words.svg?branch=master
|
|
|
|
|
:target: https://travis-ci.org/savoirfairelinux/num2words
|
2017-02-01 14:59:43 -05:00
|
|
|
|
2017-10-30 14:06:46 -04:00
|
|
|
.. image:: https://coveralls.io/repos/github/savoirfairelinux/num2words/badge.svg?branch=master
|
2017-10-30 14:08:44 -04:00
|
|
|
:target: https://coveralls.io/github/savoirfairelinux/num2words?branch=master
|
2017-10-30 14:06:46 -04:00
|
|
|
|
|
|
|
|
|
2017-10-22 18:06:49 +02:00
|
|
|
``num2words`` is a library that converts numbers like ``42`` to words like ``forty-two``.
|
2017-09-12 00:57:01 +02:00
|
|
|
It supports multiple languages (see the list below for full list
|
2017-09-07 09:39:20 +03:00
|
|
|
of languages) and can even generate ordinal numbers like ``forty-second``
|
|
|
|
|
(although this last feature is a bit buggy for some languages at the moment).
|
2013-05-28 11:34:53 -04:00
|
|
|
|
2017-12-19 04:51:58 -08:00
|
|
|
The project is hosted on GitHub_. Contributions are welcome.
|
|
|
|
|
|
|
|
|
|
.. _GitHub: https://github.com/savoirfairelinux/num2words
|
2013-05-28 11:34:53 -04:00
|
|
|
|
2013-05-28 13:10:06 -04:00
|
|
|
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
|
|
|
|
|
|
2017-12-19 04:51:58 -08:00
|
|
|
The test suite in this library is new, so it's rather thin, but it can be run with::
|
2015-04-06 15:11:59 -04:00
|
|
|
|
|
|
|
|
python setup.py test
|
|
|
|
|
|
2018-10-26 09:31:41 -04:00
|
|
|
To run the full CI test suite which includes linting and multiple python environments::
|
|
|
|
|
|
|
|
|
|
pip install tox
|
|
|
|
|
tox
|
|
|
|
|
|
2013-05-28 11:34:53 -04:00
|
|
|
Usage
|
|
|
|
|
-----
|
2018-04-19 09:03:21 -04:00
|
|
|
Command line::
|
|
|
|
|
|
|
|
|
|
$ num2words 10001
|
|
|
|
|
ten thousand and one
|
|
|
|
|
$ num2words 24,120.10
|
|
|
|
|
twenty-four thousand, one hundred and twenty point one
|
|
|
|
|
$ num2words 24,120.10 -l es
|
|
|
|
|
veinticuatro mil ciento veinte punto uno
|
|
|
|
|
$num2words 2.14 -l es --to currency
|
|
|
|
|
dos euros con catorce centimos
|
|
|
|
|
|
|
|
|
|
In code there's only one function to use::
|
2013-05-28 11:34:53 -04:00
|
|
|
|
|
|
|
|
>>> from num2words import num2words
|
|
|
|
|
>>> num2words(42)
|
|
|
|
|
forty-two
|
2017-12-19 04:51:58 -08:00
|
|
|
>>> num2words(42, to='ordinal')
|
2013-05-28 11:34:53 -04:00
|
|
|
forty-second
|
|
|
|
|
>>> num2words(42, lang='fr')
|
|
|
|
|
quarante-deux
|
|
|
|
|
|
2018-06-15 18:14:56 +03:00
|
|
|
Besides the numerical argument, there are two main optional arguments.
|
2013-05-28 11:34:53 -04:00
|
|
|
|
2018-01-31 15:24:28 +01:00
|
|
|
**to:** The converter to use. Supported values are:
|
2017-11-06 20:19:26 -05:00
|
|
|
|
2017-10-30 14:06:46 -04:00
|
|
|
* ``cardinal`` (default)
|
|
|
|
|
* ``ordinal``
|
2017-11-06 20:19:26 -05:00
|
|
|
* ``ordinal_num``
|
2017-10-30 14:06:46 -04:00
|
|
|
* ``year``
|
|
|
|
|
* ``currency``
|
2013-05-28 11:34:53 -04:00
|
|
|
|
2014-06-02 12:48:23 -04:00
|
|
|
**lang:** The language in which to convert the number. Supported values are:
|
|
|
|
|
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``en`` (English, default)
|
2017-06-21 22:22:27 +03:00
|
|
|
* ``ar`` (Arabic)
|
2018-02-19 22:30:20 +01:00
|
|
|
* ``cz`` (Czech)
|
2014-06-02 12:48:23 -04:00
|
|
|
* ``de`` (German)
|
2017-09-06 22:59:20 +02:00
|
|
|
* ``dk`` (Danish)
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``en_GB`` (English - Great Britain)
|
|
|
|
|
* ``en_IN`` (English - India)
|
2014-06-02 12:48:23 -04:00
|
|
|
* ``es`` (Spanish)
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``es_CO`` (Spanish - Colombia)
|
|
|
|
|
* ``es_VE`` (Spanish - Venezuela)
|
|
|
|
|
* ``eu`` (EURO)
|
2018-06-22 17:00:49 +03:00
|
|
|
* ``fi`` (Finnish)
|
2017-09-06 22:59:20 +02:00
|
|
|
* ``fr`` (French)
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``fr_CH`` (French - Switzerland)
|
2018-01-16 20:38:43 +01:00
|
|
|
* ``fr_BE`` (French - Belgium)
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``fr_DZ`` (French - Algeria)
|
2017-09-06 22:59:20 +02:00
|
|
|
* ``he`` (Hebrew)
|
2020-01-28 17:17:16 +01:00
|
|
|
* ``hu`` (Hungarian)
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``id`` (Indonesian)
|
2017-09-06 22:59:20 +02:00
|
|
|
* ``it`` (Italian)
|
2018-06-15 18:14:56 +03:00
|
|
|
* ``ja`` (Japanese)
|
2019-05-12 20:33:31 +05:30
|
|
|
* ``kn`` (Kannada)
|
2018-11-11 08:44:02 +09:00
|
|
|
* ``ko`` (Korean)
|
2020-01-12 13:22:55 +06:00
|
|
|
* ``kz`` (Kazakh)
|
2014-06-02 12:48:23 -04:00
|
|
|
* ``lt`` (Lithuanian)
|
|
|
|
|
* ``lv`` (Latvian)
|
2016-01-11 19:35:11 +01:00
|
|
|
* ``no`` (Norwegian)
|
2015-07-07 13:40:05 -04:00
|
|
|
* ``pl`` (Polish)
|
2018-10-20 20:53:14 +01:00
|
|
|
* ``pt`` (Portuguese)
|
2017-12-19 04:51:58 -08:00
|
|
|
* ``pt_BR`` (Portuguese - Brazilian)
|
2018-11-11 00:36:51 +01:00
|
|
|
* ``sl`` (Slovene)
|
|
|
|
|
* ``sr`` (Serbian)
|
2018-10-17 16:56:40 +03:00
|
|
|
* ``ro`` (Romanian)
|
2017-09-06 22:59:20 +02:00
|
|
|
* ``ru`` (Russian)
|
2020-01-15 15:44:07 +01:00
|
|
|
* ``te`` (Telugu)
|
2017-09-07 09:39:20 +03:00
|
|
|
* ``tr`` (Turkish)
|
2017-12-14 23:48:12 +07:00
|
|
|
* ``th`` (Thai)
|
2018-10-14 18:15:49 -04:00
|
|
|
* ``vi`` (Vietnamese)
|
2017-09-08 19:29:37 +02:00
|
|
|
* ``nl`` (Dutch)
|
2017-09-08 17:47:42 +03:00
|
|
|
* ``uk`` (Ukrainian)
|
2017-09-08 19:29:37 +02:00
|
|
|
|
2017-12-19 04:51:58 -08:00
|
|
|
You can supply values like ``fr_FR``; if the country doesn't exist but the
|
|
|
|
|
language does, the code will fall back to the base language (i.e. ``fr``). If
|
2017-09-06 22:59:20 +02:00
|
|
|
you supply an unsupported language, ``NotImplementedError`` is raised.
|
2013-05-28 11:34:53 -04:00
|
|
|
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')
|
|
|
|
|
|
2018-06-15 18:14:56 +03:00
|
|
|
Additionally, some converters and languages support other optional arguments
|
|
|
|
|
that are needed to make the converter useful in practice.
|
|
|
|
|
|
2018-06-27 17:51:28 -04:00
|
|
|
Wiki
|
|
|
|
|
----
|
|
|
|
|
For additional information on some localization please check the Wiki_.
|
|
|
|
|
And feel free to propose wiki enhancement.
|
|
|
|
|
|
|
|
|
|
.. _Wiki: https://github.com/savoirfairelinux/num2words/wiki
|
2018-06-15 18:14:56 +03:00
|
|
|
|
2013-05-28 11:34:53 -04:00
|
|
|
History
|
|
|
|
|
-------
|
|
|
|
|
|
2017-12-19 04:51:58 -08:00
|
|
|
``num2words`` is based on an old library, ``pynum2word``, created by Taro Ogawa
|
2017-09-06 22:59:20 +02:00
|
|
|
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.
|
2013-05-28 11:34:53 -04:00
|
|
|
|
2017-09-06 22:59:20 +02:00
|
|
|
I am thus basing myself on Marius Grigaitis' improvements and re-publishing
|
|
|
|
|
``pynum2word`` as ``num2words``.
|
2013-05-28 11:34:53 -04:00
|
|
|
|
|
|
|
|
Virgil Dupras, Savoir-faire Linux
|