vat-utils is a Python library for working with VAT (Value Added Tax) numbers, including validation and formatting. Version 0.3.1 requires Python >=3.6,<4.0. Release cadence is irregular.
pip install vat-utilsVerified import paths — ran on the pinned version, not inferred.
Validate a VAT number using VatNumber class.
Replace `vatutils.validate_vat(vat_number)` with `vatutils.VatNumber(vat_number).is_valid()`.
Update code to check only the boolean: `if vat.is_valid():` instead of `valid, msg = vat.is_valid()`.
Use additional services like vies for live validation.
No dependency data recorded yet.