Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
.. image:: https://img.shields.io/pypi/v/numinwords.svg :target: https://pypi.python.org/pypi/numinwords
.. image:: https://travis-ci.org/savoirfairelinux/numinwords.svg?branch=master :target: https://travis-ci.org/savoirfairelinux/numinwords
.. image:: https://coveralls.io/repos/github/savoirfairelinux/numinwords/badge.svg?branch=master :target: https://coveralls.io/github/savoirfairelinux/numinwords?branch=master
numinwords
is a library that converts numbers like 42
to words like forty-two
.
It supports multiple languages (see the list below for full list
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).
The project is hosted on GitHub_. Contributions are welcome.
.. _GitHub: https://github.com/savoirfairelinux/numinwords
The easiest way to install numinwords
is to use pip::
pip install numinwords
Otherwise, you can download the source package and then execute::
python setup.py install
The test suite in this library is new, so it's rather thin, but it can be run with::
python setup.py test
To run the full CI test suite which includes linting and multiple python environments::
pip install tox
tox
Command line::
$ numinwords 10001
ten thousand and one
$ numinwords 24,120.10
twenty-four thousand, one hundred and twenty point one
$ numinwords 24,120.10 -l es
veinticuatro mil ciento veinte punto uno
$numinwords 2.14 -l es --to currency
dos euros con catorce centimos
In code there's only one function to use::
>>> from numinwords import numinwords
>>> numinwords(42)
forty-two
>>> numinwords(42, to='ordinal')
forty-second
>>> numinwords(42, lang='fr')
quarante-deux
Besides the numerical argument, there are two main optional arguments.
to: The converter to use. Supported values are:
cardinal
(default)ordinal
ordinal_num
year
currency
lang: The language in which to convert the number. Supported values are:
en
(English, default)ar
(Arabic)cz
(Czech)de
(German)dk
(Danish)en_GB
(English - Great Britain)en_IN
(English - India)es
(Spanish)es_CO
(Spanish - Colombia)es_VE
(Spanish - Venezuela)eu
(EURO)fi
(Finnish)fr
(French)fr_CH
(French - Switzerland)fr_BE
(French - Belgium)fr_DZ
(French - Algeria)he
(Hebrew)id
(Indonesian)it
(Italian)ja
(Japanese)kn
(Kannada)ko
(Korean)kz
(Kazakh)lt
(Lithuanian)lv
(Latvian)no
(Norwegian)pl
(Polish)pt
(Portuguese)pt_BR
(Portuguese - Brazilian)sl
(Slovene)sr
(Serbian)ro
(Romanian)ru
(Russian)te
(Telugu)tr
(Turkish)th
(Thai)vi
(Vietnamese)nl
(Dutch)uk
(Ukrainian)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
you supply an unsupported language, NotImplementedError
is raised.
Therefore, if you want to call numinwords
with a fallback, you can do::
try:
return numinwords(42, lang=mylang)
except NotImplementedError:
return numinwords(42, lang='en')
Additionally, some converters and languages support other optional arguments that are needed to make the converter useful in practice.
For additional information on some localization please check the Wiki_. And feel free to propose wiki enhancement.
.. _Wiki: https://github.com/savoirfairelinux/numinwords/wiki
numinwords
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 numinwords
.
Virgil Dupras, Savoir-faire Linux
numinwords
based on the old pynum2word
project.FAQs
Modules to convert numbers to words. Easily extensible. Guatemala test
We found that numinwords demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.