2018-12-05 09:43:45 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-05-28 11:50:48 -04:00
|
|
|
# Copyright (c) 2003, Taro Ogawa. All Rights Reserved.
|
|
|
|
|
# Copyright (c) 2013, Savoir-faire Linux inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
# This library 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
|
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
|
# MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2019-03-29 18:47:18 +01:00
|
|
|
from . import (lang_AR, lang_CZ, lang_DE, lang_DK, lang_EN, lang_EN_IN,
|
|
|
|
|
lang_ES, lang_ES_CO, lang_ES_VE, lang_FI, lang_FR, lang_FR_BE,
|
|
|
|
|
lang_FR_CH, lang_FR_DZ, lang_HE, lang_ID, lang_IT, lang_JA,
|
2019-05-12 20:33:31 +05:30
|
|
|
lang_KN, lang_KO, lang_LT, lang_LV, lang_NL, lang_NO, lang_PL,
|
|
|
|
|
lang_PT, lang_PT_BR, lang_RO, lang_RU, lang_SL, lang_SR,
|
2019-06-13 17:26:17 +02:00
|
|
|
lang_TE, lang_TH, lang_TR, lang_UK, lang_VI)
|
2013-05-28 11:50:48 -04:00
|
|
|
|
|
|
|
|
CONVERTER_CLASSES = {
|
2017-06-21 22:20:22 +03:00
|
|
|
'ar': lang_AR.Num2Word_AR(),
|
2018-02-19 22:30:20 +01:00
|
|
|
'cz': lang_CZ.Num2Word_CZ(),
|
2013-05-28 11:50:48 -04:00
|
|
|
'en': lang_EN.Num2Word_EN(),
|
2015-01-21 16:33:58 +05:30
|
|
|
'en_IN': lang_EN_IN.Num2Word_EN_IN(),
|
2013-05-28 11:50:48 -04:00
|
|
|
'fr': lang_FR.Num2Word_FR(),
|
2016-03-18 15:52:30 +01:00
|
|
|
'fr_CH': lang_FR_CH.Num2Word_FR_CH(),
|
2018-01-16 20:38:43 +01:00
|
|
|
'fr_BE': lang_FR_BE.Num2Word_FR_BE(),
|
2017-09-05 22:43:21 +02:00
|
|
|
'fr_DZ': lang_FR_DZ.Num2Word_FR_DZ(),
|
2013-05-28 11:50:48 -04:00
|
|
|
'de': lang_DE.Num2Word_DE(),
|
2018-06-22 17:00:49 +03:00
|
|
|
'fi': lang_FI.Num2Word_FI(),
|
2013-05-28 11:50:48 -04:00
|
|
|
'es': lang_ES.Num2Word_ES(),
|
2017-04-03 17:29:03 -04:00
|
|
|
'es_CO': lang_ES_CO.Num2Word_ES_CO(),
|
|
|
|
|
'es_VE': lang_ES_VE.Num2Word_ES_VE(),
|
2015-12-18 03:17:17 +01:00
|
|
|
'id': lang_ID.Num2Word_ID(),
|
2018-06-15 18:14:56 +03:00
|
|
|
'ja': lang_JA.Num2Word_JA(),
|
2019-05-12 20:33:31 +05:30
|
|
|
'kn': lang_KN.Num2Word_KN(),
|
2018-11-11 08:44:02 +09:00
|
|
|
'ko': lang_KO.Num2Word_KO(),
|
2013-05-28 11:50:48 -04:00
|
|
|
'lt': lang_LT.Num2Word_LT(),
|
2014-06-02 11:33:04 -04:00
|
|
|
'lv': lang_LV.Num2Word_LV(),
|
2015-07-05 11:52:13 +02:00
|
|
|
'pl': lang_PL.Num2Word_PL(),
|
2018-10-17 16:56:40 +03:00
|
|
|
'ro': lang_RO.Num2Word_RO(),
|
2015-12-15 04:24:57 +00:00
|
|
|
'ru': lang_RU.Num2Word_RU(),
|
2015-06-20 20:21:37 +02:00
|
|
|
'sl': lang_SL.Num2Word_SL(),
|
2018-11-11 00:36:51 +01:00
|
|
|
'sr': lang_SR.Num2Word_SR(),
|
2016-01-11 19:33:22 +01:00
|
|
|
'no': lang_NO.Num2Word_NO(),
|
2016-03-19 22:21:14 +01:00
|
|
|
'dk': lang_DK.Num2Word_DK(),
|
2018-10-20 20:53:14 +01:00
|
|
|
'pt': lang_PT.Num2Word_PT(),
|
2016-02-26 23:13:40 -03:00
|
|
|
'pt_BR': lang_PT_BR.Num2Word_PT_BR(),
|
2017-02-01 08:49:34 +01:00
|
|
|
'he': lang_HE.Num2Word_HE(),
|
2017-03-19 22:41:41 +07:00
|
|
|
'it': lang_IT.Num2Word_IT(),
|
2018-10-14 18:15:49 -04:00
|
|
|
'vi': lang_VI.Num2Word_VI(),
|
2017-12-14 23:48:12 +07:00
|
|
|
'th': lang_TH.Num2Word_TH(),
|
2017-09-08 13:17:14 +02:00
|
|
|
'tr': lang_TR.Num2Word_TR(),
|
2017-09-20 14:35:27 +02:00
|
|
|
'nl': lang_NL.Num2Word_NL(),
|
2019-05-21 18:15:38 +02:00
|
|
|
'uk': lang_UK.Num2Word_UK(),
|
|
|
|
|
'te': lang_TE.Num2Word_TE()
|
2013-05-28 11:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
2017-10-23 15:58:00 -06:00
|
|
|
|
2017-11-06 20:19:26 -05:00
|
|
|
CONVERTES_TYPES = ['cardinal', 'ordinal', 'ordinal_num', 'year', 'currency']
|
2017-10-23 18:38:21 -06:00
|
|
|
|
|
|
|
|
|
2017-10-26 13:14:09 +03:00
|
|
|
def num2words(number, ordinal=False, lang='en', to='cardinal', **kwargs):
|
2013-05-28 11:50:48 -04:00
|
|
|
# We try the full language first
|
|
|
|
|
if lang not in CONVERTER_CLASSES:
|
|
|
|
|
# ... and then try only the first 2 letters
|
|
|
|
|
lang = lang[:2]
|
|
|
|
|
if lang not in CONVERTER_CLASSES:
|
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
converter = CONVERTER_CLASSES[lang]
|
2019-05-12 20:33:31 +05:30
|
|
|
|
2018-10-31 22:01:26 -04:00
|
|
|
if isinstance(number, str):
|
|
|
|
|
number = converter.str_to_number(number)
|
2019-05-12 20:33:31 +05:30
|
|
|
|
2017-09-29 15:29:25 -04:00
|
|
|
# backwards compatible
|
2013-05-28 11:50:48 -04:00
|
|
|
if ordinal:
|
|
|
|
|
return converter.to_ordinal(number)
|
2017-09-29 15:29:25 -04:00
|
|
|
|
|
|
|
|
if to not in CONVERTES_TYPES:
|
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
2017-10-26 13:14:09 +03:00
|
|
|
return getattr(converter, 'to_{}'.format(to))(number, **kwargs)
|