python-stdnum icon indicating copy to clipboard operation
python-stdnum copied to clipboard

A Python library to provide functions to handle, parse and validate standard numbers.

Results 117 python-stdnum issues
Sort by recently updated
recently updated
newest added

Correct french vat according to https://ec.europa.eu/taxation_customs/tin/#/check-tin is raising an error. The vat is: FR3039235943079

All norwegian org numbers must be between 800_000_000 and 999_999_999, and your library validates org numbers like "100 000 008". Perhaps a better validation function would be, e.g. ```python def...

The CAE (Código de Actividad y Establecimiento) number is a 13-digit number and that allows you to identify an activity and the establishment in which it is carried out. This...

I can take a crack at it if youre interested but I figured I'd ask first: while python caches modules it does not cache import errors (nor can it optimise...

The timeout parameter of the zeep transport class is not responsable for POST/GET timeouts. The operational_timeout parameter should be used for that. See https://github.com/mvantellingen/python-zeep/issues/140 Closes https://github.com/arthurdejong/python-stdnum/issues/444

The current way that the timeout is set for zeep does not function properly. The parameter for POST/GET timeouts is operation_timeout as discussed here: https://github.com/mvantellingen/python-zeep/issues/140 https://github.com/arthurdejong/python-stdnum/blob/e951daca447f678f5a3f3c70dcc535eb8d7449b4/stdnum/util.py#L256

For ID card numbers starting with `412723`, they are indeed valid in reality, but this library considers them invalid. This area code is no longer in use due to some...

According to the official references mentioned in #107, Israeli companies can use two types of Tax Identification Numbers / VAT codes: - Corporate Registration Numbers for corporations, as currently implemented...

Just 8 digits. Example: https://or.justice.cz/ias/ui/rejstrik-firma.vysledky?subjektId=47718&typ=PLATNY&sp=H4sIAAAAAAAAAKtWykvMTU0JSCwCUiWpRcVKVtHVStmplUpWQJmq1DIlHaWyxJzSVCD%252F6MLs%252FJRE%250D%250AhcTSknyl2thaAOBvbwI7AAAA%250D%250A Example: 00177041, could be formatted as `001 77 041`

enhancement