stdnum.fi.veronumero

Veronumero (Finnish individual tax number).

The Veronumero an individual tax number that is assigned to workers in the construction industry in Finland. The number is separate from the HETU and is a 12 digit number without any embedded information such as birth dates.

More information:

>>> validate('123456789123')
'123456789123'
>>> validate('12345678912A')
Traceback (most recent call last):
    ...
InvalidFormat: ...
>>> validate('123456789')
Traceback (most recent call last):
    ...
InvalidLength: ...
stdnum.fi.veronumero.compact(number)

Convert the Veronumero to the minimal representation. This strips surrounding whitespace and removes separators.

stdnum.fi.veronumero.is_valid(number)

Check if the number is a valid tax number.

stdnum.fi.veronumero.validate(number)

Check if the number is a valid tax number. This checks the length and formatting.