ru-word2number

Convert russian number words eg. триста сорок два to numbers (342).


License
MIT
Install
pip install ru-word2number==1.1

Documentation

Word to Number for Russian language

This is a fork of w2n Python module to convert number words (eg. twenty one) to numeric digits (21). It works for positive numbers upto the range of 999,999,999,999 (i.e. billions) Below is the installation, usage and other details of this module.

Installation

Please ensure that you have updated pip to the latest version before installing word2number.

Clone this repo first.

git clone https://github.com/Oknolaz/Russian_w2n/
cd Russian_w2n

Make sure you install all requirements given in requirements.txt

 pip install -r requirements.txt

And then you should run the setup.py:

 python3 setup.py install

Usage

First you have to import the module using the below code.

from ru_word2number import w2n

Then you can use the word_to_num method to convert a number-word to numeric digits, as shown below.

print(w2n.word_to_num("два миллиона три тысячи девятьсот восемьдесят четыре"))
2003984
print(w2n.word_to_num('две целых три десятых')) 
2.3
print(w2n.word_to_num('сто двенадцать')) 
112
print(w2n.word_to_num('сто тридцать-пять')) 
135
print(w2n.word_to_num('миллион миллион'))
Error: Redundant number! Please enter a valid number word (eg. two million twenty three thousand and forty nine)
None
print(w2n.word_to_num('бля'))
Error: No valid number words found! Please enter a valid number word (eg. two million twenty three thousand and forty nine)
None

Thanks

License

The MIT License (MIT)

Copyright (c) 2016 Akshay Nagpal (https://github.com/akshaynagpal)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.