Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement calc_check_digits in SEPA Identifier of the ↵Sergi Almacellas Abellana2016-11-131-7/+19
| | | | Creditor (AT-02)
* Add Australian Tax File NumberArthur de Jong2016-10-142-0/+130
| | | | | | | Based on the implementation provided by Vincent Bastos <vincent@lavalab.com.au> See https://github.com/arthurdejong/python-stdnum/pull/40
* Add Australian Company NumberArthur de Jong2016-10-142-0/+216
| | | | | | | Based on the implementation provided by Vincent Bastos <vincent@lavalab.com.au> See https://github.com/arthurdejong/python-stdnum/pull/40
* Add Australian Business NumberArthur de Jong2016-10-143-0/+242
| | | | | | | Based on the implementation provided by Vincent Bastos <vincent@lavalab.com.au> See https://github.com/arthurdejong/python-stdnum/pull/40
* Provide businessid as an aliasArthur de Jong2016-10-142-3/+10
| | | | | The Belgian company number or enterprise number (ondernemingsnummer) is the new name for what was previously the VAT number.
* Add reference to Referencia Catastral implementationArthur de Jong2016-09-101-0/+4
|
* Add more tests for Referencia CatastralArthur de Jong2016-09-101-0/+295
| | | | | | | | | | | This adds a number of extra tests for the Spanish Referencia Catastral (stdnum.es.referenciacatastral) module, mostly based on numbers found online. This commit includes some of the documentation on the structure of Referencia Catastral that was in the original pull request. See https://github.com/arthurdejong/python-stdnum/pull/38
* Add Spansih Referencia CatastralDavid García Garzón2016-09-101-0/+114
| | | | | | | | The control digit check algorithm is based on Javascript implementation by Vicente Sancho that can be found at http://trellat.es/validar-la-referencia-catastral-en-javascript/ See https://github.com/arthurdejong/python-stdnum/pull/38
* Test a few Spanish IBANs found onlineArthur de Jong2016-09-101-0/+24
|
* Avoid leaving open file descriptor in testArthur de Jong2016-09-101-1/+2
|
* Add Spanish IBAN number moduleArthur de Jong2016-09-102-0/+91
| | | | This validates the country-specific part of the IBAN.
* Validate country-specific part of IBANArthur de Jong2016-09-101-6/+27
| | | | | | This adds the possible of validating the country-specific part of the IBAN. If the country has an IBAN module, checking is also delegated to that module.
* Introduce get_cc_module() utility functionArthur de Jong2016-09-102-16/+15
| | | | | | This changes the get_vat_module() function to a more generic get_cc_module() function so that it can also be used for other things like IBAN checking.
* Add to_iban() function to Spanish CCCArthur de Jong2016-09-101-0/+11
|
* Implement calc_check_digits() in IBANArthur de Jong2016-09-101-7/+18
| | | | | | Introduce a function to calculate the two check digits of an IBAN. Since the check digits are the third and fourth characters in the number, placeholders need to be provided when calling this function.
* Add Spanish Código Cuenta Corriente (CCC)David García Garzón2016-09-101-0/+116
|
* Add Spanish CUPS codeDavid García Garzón2016-09-032-0/+196
|
* Properly print error message of exceptionsArthur de Jong2016-08-281-1/+1
| | | | | This ensures that the message passed to the constructor is shown in the traceback while falling back to the class default.
* Get files ready for 1.4 release1.4Arthur de Jong2016-07-2611-4/+270
|
* Update database filesArthur de Jong2016-07-266-286/+330
| | | | This also updates the getmybp script to support the new layout.
* Add formatting of ISO 6346 container codesArthur de Jong2016-07-261-1/+9
|
* Implement Damm algorithmArthur de Jong2016-07-263-2/+189
| | | This is a generic check digit algorithm.
* Fix French NIF format testArthur de Jong2016-07-261-3/+3
| | | Fixes 2409ee9.
* Improve validation to Swiss SSN numberArthur de Jong2016-07-261-5/+14
| | | | The EAN-13 number should start with 756.
* Add documentation to Brazillian CPFArthur de Jong2016-07-261-1/+9
|
* Add pointer to ISO 6346 informationArthur de Jong2016-07-261-0/+4
|
* Fix copyright noticeArthur de Jong2016-07-261-1/+1
|
* Add NIF - French tax identification numberDimitri Papadopoulos2016-07-261-0/+75
| | | | Add module for NIF also known as SPI number.
* Move NIR check digit calculation to functionArthur de Jong2016-07-261-15/+30
| | | | | This also fixes a number of formatting issues, improves the module description and adds tests for the 2A and 2B departments.
* Improve French NIR validationDimitri Papadopoulos2016-07-261-5/+14
| | | | | Please note that the 7th character of the NIR might be 'A' or 'B'. Other than that the NIR contains digits only.
* Add extra tests for SIREN and SIRETArthur de Jong2016-07-254-2/+143
| | | | | | | | This adds tests for a few numbers that have been found online and allows the dot as a seprator because those numbers were found. It also ensures that the SIREN validation is also called for SIRET and adds a SIRET formatting function.
* Add French SIRET numberYoann Aubineau2016-07-251-0/+97
| | | | | Add a SIRET (Système d'Identification du Répertoire des ETablissements, a French company etablishment identification number) module.
* Add more ISIL testsArthur de Jong2016-05-292-6/+404
| | | | | This moves a few of the tests from the module to a dedicated test file and adds tests for a number of ISIL numbers found online.
* Fix formatting of bulleted listArthur de Jong2016-05-291-0/+1
|
* Fix bug in Swiss SSN validationArthur de Jong2016-05-282-9/+44
| | | | | | | The validation was delegated to the EAN module but the number is supposed to be an EAN-13 only and and EAN-8 was also accepted. This also reformats the docstring.
* Fix bug in Irish VAT number validationArthur de Jong2016-05-282-9/+74
| | | | | | | | | | | The last digits of the number that should be letters were not tested to be letters which could result in ValueError being raised for certain validations. This also clarifies the documentation and adds a convert() function to convert numbers from the old format (where the second character would be a letter or symbol) to the new format (7 digits followed by 1 or 2 letters).
* Small improvements to testsArthur de Jong2016-05-281-3/+2
| | | | | This includes a formatting fix and removes an unused variable from a test.
* Fix get_module_description()Arthur de Jong2016-05-281-1/+1
| | | | This fixes the initial implementation in 3f6d52a.
* Add French NIRDimitri Papadopoulos2016-05-271-0/+80
| | | | Add module for NIR also known as social security number.
* Add United Kingdom NHS numberArthur de Jong2016-05-091-0/+85
| | | | | Add module for United Kingdom National Health Service patient identifier.
* Read numdb files in context managerArthur de Jong2016-05-091-2/+2
| | | | | | | This ensures that the file is explicitly closed in the function to avoid "unclosed file" warnings. See: https://github.com/arthurdejong/python-stdnum/issues/33
* Make more information links consistentArthur de Jong2016-04-1117-42/+63
| | | | | Also fix a docstring in stdnum.nl.bsn and add a pointer to stdnum.nl.onderwijsnummer.
* Implement online TC Kimlik checkArthur de Jong2016-04-093-15/+54
| | | | | This refactors out the SOAP client function that was implemented for VIES to the stdnum.utils module.
* Add Turkish personal identification numberArthur de Jong2016-04-093-0/+319
|
* Document accuracy of RFC check digit testArthur de Jong2016-04-012-8/+9
| | | | | | | | There is an online service that allows validating RFC numbers. It seems there are a lot of numbers that do not match the check digit algorithm which confirms disabling the check digit test by default is a good idea. Also see https://github.com/arthurdejong/python-stdnum/issues/32
* Get files ready for 1.3 release1.3Arthur de Jong2016-03-055-5/+73
|
* Update database filesArthur de Jong2016-03-057-273/+217
| | | | This also updates the getcnloc and getiban scripts to use new URLs.
* Integrate information from the wikiArthur de Jong2015-10-309-47/+136
| | | | | | | This adds the information that was previously in the Trac wiki into the source docstrings because the Trac instance is being phased out. This also includes small updates to the ISIL module.
* Fix SOAP client re-useArthur de Jong2015-10-281-1/+1
| | | | | | | This fixes a bug when checking re-use of the global SOAP client object. The object could not be evaluated in boolean context so is no explicitly compared to None. For suds a MethodNotFound exception would be raised for __nonzero__() (which Python uses for boolean comparison).
* Fix problem with check_vies_approx()Lionel Elie Mamane2015-10-281-1/+1
|