Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum
Commit message (Collapse)AuthorAgeFilesLines
* Get files ready for 1.8.1 release1.8.1Arthur de Jong2018-01-061-1/+1
|
* Get files ready for 1.8 release1.8Arthur de Jong2018-01-031-2/+2
|
* Move get_cc_module() function to package for public useArthur de Jong2018-01-031-0/+3
|
* Try the non-caching zeep client on older versionsArthur de Jong2018-01-031-10/+16
| | | | | | | | This uses the "normal" Client class from zeep if CachingClient is not available (this is the case on older zeep versions). This also records (and documents) the dependencies for SOAP libraries in setup.py.
* Fix Python 2.6 compatibilityArthur de Jong2018-01-012-6/+6
|
* Update database filesArthur de Jong2018-01-015-91/+122
| | | | | Note that the Swift IBAN Registry in txt format is currently unavailable so hasn't been updated.
* Add Indian PANsrikanthlogic2018-01-011-0/+120
| | | | Closes https://github.com/arthurdejong/python-stdnum/pull/57
* Correctly quote regular expressionArthur de Jong2017-12-311-2/+2
| | | | Fixes a6ae1d0.
* Use README as package long descriptionArthur de Jong2017-12-311-139/+0
| | | | | This also shortens the stdnum module docstring and updates the Sphinx configuration.
* Add Indian Aadhaarsrikanthlogic2017-12-012-0/+119
| | | | Closes https://github.com/arthurdejong/python-stdnum/pull/56
* Add CAS Registry NumberArthur de Jong2017-11-261-0/+76
| | | | This adds validation of the Chemical Abstracts Service Registry Number.
* Add Euro bank notes serial numberArthur de Jong2017-11-221-0/+72
| | | | This adds validation of serial numbers that appear on Euro bills.
* Rename stdnum.iso9362 to stdnum.bicArthur de Jong2017-11-033-68/+106
| | | | | | The new name is more descriptive and easier to remember. This makes stdnum.iso9362 a compatibility module that can be imported with the old name but provides a deprecation warning.
* Support zeep as preferred SOAP libraryArthur de Jong2017-10-221-7/+12
| | | | | | This tries zeep, suds (suds-jurko) and falls back to using pysimplesoap for performing the SOAP requests. From those zeep seems to be the best supported implementation.
* Add tests for the VIES VAT validation functionsArthur de Jong2017-10-221-1/+1
| | | | | | These tests are not normally run as part of the normal test suite and have to be explicitly enabled by setting the ONLINE_TESTS environment variable to avoid overloading these online services.
* Add stdnum.do.ncf.check_dgii()Arthur de Jong2017-10-221-1/+51
| | | | | | This adds functions for querying the Dirección General de Impuestos Internos (DGII) API to check if the RNC and NCF combination provided is valid.
* Add stdnum.do.rnc.check_dgii() and search_dgii()Arthur de Jong2017-10-221-1/+100
| | | | | | This adds functions for querying the Dirección General de Impuestos Internos (DGII) API to validate the RNC and search the register by keyword.
* Add Dominican Republic receipt number (NCF)Arthur de Jong2017-10-221-0/+82
| | | | | This number does not have a check digit but uses a distinctive enough format that it should not be too great of a problem.
* Cache SOAP client in get_soap_client()Arthur de Jong2017-10-223-43/+26
| | | | | This caches the instantiated SOAP client classes in the util module instead of doing the caching in every module that performs requests.
* Also add a whitelist for Dominican Republic RNCArthur de Jong2017-10-141-3/+14
| | | | | | Some RNCs are apparently valid while having an incorrect check digit (though most appear to be inactive). There also appear to be valid RNCs that do not have 9 digits.
* Add a few new numbers to the Cedula whitelistArthur de Jong2017-10-141-76/+95
| | | | | | These numbers were found to be valid but had an invalid check digit nonetheless (though most appear to be inactive). Also there appear to be a few valid Cedula that do not have 11 digits.
* Handle unicode arguments in get_cc_module()David Arnold2017-10-141-6/+1
| | | | Closes https://github.com/arthurdejong/python-stdnum/issues/54
* Fix spelling errorsArthur de Jong2017-09-151-3/+3
|
* Get files ready for 1.7 release1.7Arthur de Jong2017-09-121-1/+7
|
* Add example with custom table to DammArthur de Jong2017-09-121-0/+13
|
* Update database filesArthur de Jong2017-09-115-181/+215
|
* Minor code improvements (mostly PEP8)Arthur de Jong2017-09-1114-20/+27
|
* Make import ordering consistentArthur de Jong2017-09-1118-19/+18
|
* Docstring improvementsArthur de Jong2017-09-11134-608/+535
|
* Fix Czech DIČ check digit calculationArthur de Jong2017-09-081-3/+3
| | | | | | | | This fixes a bug in the check digit calculation for the 9-digit numbers that start with a 6 for individuals without a RČ. This also adds a few tests for Czech VAT numbers. See https://github.com/arthurdejong/python-stdnum/issues/51
* Add Estonian RegistrikoodArthur de Jong2017-09-041-0/+84
| | | | | | | | | This is based on what was done by Mohammed Salman of Holvi. This adds more tests and validates the check digit. This uses the check digit algorithm from Isikukood which seems to work with all tested numbers although there is no confirmation that this is the correct algorithm.
* Add support for German tax id numberMohammed Salman2017-09-031-0/+94
|
* Check bookland code in ISBNArthur de Jong2017-08-301-1/+3
| | | | | | This ensures that an InvalidComponent() exception is raised when an unknown EAN bookland code is found. It will also raise this exception when using to_isbn10() when not using the 978 code.
* Ensure 100% branch coverageArthur de Jong2017-08-285-24/+12
| | | | | | | | | | | This ensures that the tests fail if 100% branch coverage is not achieved. It also adds some pragma statements for code that cannot be covered or is Python version dependent. Furthermore, the get_module_list() function was removed from stdnum.util and more tests were made from stdnum.util and stdnum.numdb. The functionality to call format() in a country-specific IBAN implementation was also dropped because it was not used.
* Add English Unique Pupil Number (UPN)Arthur de Jong2017-08-271-0/+109
|
* Add Canadian Business Number (BN)Arthur de Jong2017-08-261-0/+80
|
* Add Canadian Social Insurance Number (SIN)Arthur de Jong2017-08-262-0/+101
|
* Implement Finnish individual tax number validationMohammed Salman2017-08-201-0/+74
|
* Use slightly more compact codeArthur de Jong2017-06-021-5/+1
| | | | | This changes the alphanumeric to numeric translation to be slightly more compact and slightly faster.
* An ISMN can only be 10 or 13 digitsArthur de Jong2017-04-151-2/+6
| | | | This also adds the test that an ISMN should start with 9790.
* Fix conversion of 9 digit ISBN to ISBN13Arthur de Jong2017-04-151-2/+4
|
* Switch to HTTPS URLsArthur de Jong2017-04-138-15/+15
|
* Fix bug in damm.is_valid() functionArthur de Jong2017-04-131-2/+2
|
* Get files ready for 1.6 release1.6Arthur de Jong2017-04-111-3/+9
|
* Update database filesArthur de Jong2017-04-105-216/+320
|
* Add Legal Entity IdentifierArthur de Jong2017-04-101-0/+68
|
* Integrate base10 conversion into Mod 97, 10Arthur de Jong2017-04-102-23/+19
| | | | | | This moves the conversion of an alphanumeric string to a numeric representation for modulo 97 calculation to the mod_97_10 module because this mechanism seems to be used by multiple formats.
* Add missing export (__all__)Arthur de Jong2017-04-101-2/+2
|
* Add Serbian Poreski Identifikacioni BrojArthur de Jong2017-04-102-0/+87
|
* Use a slightly more readable weight alternationArthur de Jong2017-04-075-10/+10
| | | | | Switch to a slightly more readable syntax for alternating between two weights in checksums calculations.