Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum/ru
Commit message (Collapse)AuthorAgeFilesLines
* Use zip() for applying weights in check algorithmsArthur de Jong2020-03-081-6/+3
|
* Use an internal isdigits() function instead of str.isdigit()Arthur de Jong2019-04-291-2/+2
| | | | | | | | | | | The problem with the latter is that it will also accept all kinds of unicode digits that are not the ASCII 0-9 digits causing all kinds of problems in check digit calculations. Some of these unicode characters are also considered digits by int() but some are not (such as the SUPERSCRIPT TWO unicode character). Closes https://github.com/arthurdejong/python-stdnum/issues/96
* Add vat alias for RussiaLevin Rickert2018-09-211-0/+3
|
* Docstring improvementsArthur de Jong2017-09-111-4/+3
|
* Add information to Russian packageArthur de Jong2015-10-101-0/+21
|
* Add Russioan ИНН (INN) tax IDArthur de Jong2015-08-162-0/+93
This adds a basic implementation of the Russian Идентификационный номер налогоплательщика (tax identification number). This currently only checks the format, length and check digits but not whether each of the parts of the number are valid (e.g. valid region specified).