siikamiika 8820681169 add support for Finnish (FI) (#170)
FI: Add support for Finnish

This is a squash of the following commits :

* The recommendation by Kotus was optional. The code didn't work anyway
because million is 10**6, not 10**9, and the recommendation only applies
to round millions, billions and so on where the multiplier is 10 or
greater.
* FI: currency: use inheritance, add FIM and USD
* FI: add some common currencies
* FI: add inflections
* FI: inflections: small fixes
* FI: fix ordinal 200
* FI: fix comitative
* FI: actually fix ordinal 200
* FI: refactoring
* FI: fix tens
* FI: fix plural for tens and higher
* FI: toinen --> kahdes for numbers > 200
* FI: use collection for options
* FI: add tests
* FI: add minced tests
* FI: trim tests
* FI: finishing touches
* FI: improve cardinal_float, ordinal, add tests
* FI: add documentation to README.rst
2018-06-22 10:00:49 -04:00
2018-06-22 10:00:49 -04:00
2018-01-16 14:38:43 -05:00
2017-01-18 11:15:03 -05:00
2017-11-05 15:07:12 -05:00
2017-11-05 15:15:15 -05:00
2013-05-27 14:57:16 -04:00
2017-11-05 15:16:23 -05:00
2017-10-23 15:05:58 -06:00
2018-06-22 10:00:49 -04:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

num2words - Convert numbers to words in multiple languages
==========================================================

.. image:: https://img.shields.io/pypi/v/num2words.svg
   :target: https://pypi.python.org/pypi/num2words

.. image:: https://travis-ci.org/savoirfairelinux/num2words.svg?branch=master
    :target: https://travis-ci.org/savoirfairelinux/num2words

.. image:: https://coveralls.io/repos/github/savoirfairelinux/num2words/badge.svg?branch=master
    :target: https://coveralls.io/github/savoirfairelinux/num2words?branch=master


``num2words`` 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/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 is new, so it's rather thin, but it can be run with::

    python setup.py test

Usage
-----

There's only one function to use::

    >>> from num2words import num2words
    >>> num2words(42)
    forty-two
    >>> num2words(42, to='ordinal')
    forty-second
    >>> num2words(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)
* ``lt`` (Lithuanian)
* ``lv`` (Latvian)
* ``no`` (Norwegian)
* ``pl`` (Polish)
* ``pt_BR`` (Portuguese - Brazilian)
* ``sl`` (Slovene)
* ``ru`` (Russian)
* ``tr`` (Turkish)
* ``th`` (Thai)
* ``vn`` (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 ``num2words`` with a fallback, you can do::

    try:
        return num2words(42, lang=mylang)
    except NotImplementedError:
        return num2words(42, lang='en')

Additionally, some converters and languages support other optional arguments
that are needed to make the converter useful in practice.

**fi (Finnish)**

**case:** one of the following: nominative, genitive, partitive, inessive,
elative, illative, adessive, ablative, allative, essive, translative,
instructive, abessive, comitative. Defaults to nominative::

    >>> num2words(42, lang='fi')
    neljäkymmentäkaksi
    >>> num2words(42, lang='fi', case='genitive')
    neljänkymmenenkahden
    >>> num2words(42, lang='fi', case='comitative')
    neljinekymmeninekaksine
    >>> num2words(42, lang='fi', to='ordinal', case='comitative')
    neljänsinekymmenensinetoisine

**plural:** make the output words plural::

    >>> num2words(42, lang='fi', plural=True)
    neljätkymmenetkahdet
    >>> num2words(42, lang='fi', case='essive', plural=True)
    neljinäkymmeninäkaksina
    >>> # same in plural
    >>> num2words(42, lang='fi', case='comitative', plural=True)
    neljinekymmeninekaksine

**prefer:** which case marker to use when there are multiple options::

    >>> num2words(8, lang='fi', case="genitive", plural=True)
    kahdeksien
    >>> num2words(8, lang='fi', case="genitive", plural=True, prefer=["ain"])
    kahdeksain

**ja (Japanese)**

**reading:** whether or not to return the reading of the converted number.
Also has the special value ``"arabic"`` when used with ``year``::

    >>> num2words(42, lang='ja', reading=True)
    よんじゅうに
    >>> num2words(2017, lang='ja', to='year', reading='arabic')
    平成29年

**prefer:** when there are multiple readings or (kanji) words available,
prefer those in the sequence ``prefer``::

    >>> num2words(0, lang='ja')
    零
    >>> num2words(0, lang='ja', prefer=[''])
    
    >>> num2words(42, lang='ja', reading=True, prefer=['し'])
    しじゅうに
    >>> num2words(74, lang='ja', reading=True)
    ななじゅうよん
    >>> num2words(74, lang='ja', reading=True, prefer=['し', 'しち'])
    しちじゅうし
    >>> num2words(1375, lang='ja', to="year")
    天授元年
    >>> num2words(1375, lang='ja', to="year", prefer=['えいわ'])
    永和元年

**era:** (``year`` only) whether or not to convert the year to the era
calendar format. Defaults to ``True``::

    >>> num2words(2017, lang='ja', to='year', era=True)
    平成二十九年
    >>> num2words(2017, lang='ja', to='year', reading=True, era=True)
    へいせいにじゅうくねん
    >>> num2words(2017, lang='ja', to='year', era=False)
    二千十七年

**counter:** (``ordinal`` and ``ordinal_num`` only) which counter to use with
the ordinal number. Defaults to ``番`` and only supports ``reading`` with
it::

    >>> num2words(0, lang='ja', to='ordinal')
    零番目
    >>> num2words(1, lang='ja', to='ordinal', counter='人')
    一人目
    >>> num2words(1, lang='ja', to='ordinal', reading=True, counter='人')
    NotImplementedError: Reading not implemented for 人

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
Description
Modules to convert numbers to words. 42 --> forty-two
Readme 1 MiB
Languages
Python 100%