Tax ID Validation Library for Python
Project description
Tax ID Validation Library
Tax ID Pro allows you to quickly integrate tax ID validation into your existing applications. You can validate over 200 different tax ID formats for over 100 countries.
Lookup is available for VAT Numbers from the European Union (EU), plus the United Kingdom and Australia. Tax ID Pro provides a simple way to check the validity of VAT numbers and ensure compliance with EU regulations.
Install
pip install taxidpro
Usage
If you haven't already, obtain an API key by signing up at Tax ID Pro. Provide your API key to the TaxIDPro
class.
from taxidpro import TaxIDPro
taxidpro = TaxIDPro('YOUR_API_KEY')
taxidpro.validate(
country='au',
tin='92873837267',
type='entity'
)
# Output:
#
# {
# "is_valid": True,
# "message": None,
# "country_name": "Australia",
# "format_name": "Business Number"
# "tin_compact": "92873837267",
# "tin_standard": "92 873 837 267",
# }
taxidpro.lookup(
country='au',
tin='49004028077'
)
# Output:
#
# {
# "is_valid": True,
# "message": None,
# "country_name": "Australia",
# "format_name": "Business Number",
# "tin_compact": "49004028077",
# "tin_standard": "49 004 028 077",
# "lookup_data": { "name": "BHP GROUP LIMITED", "address": "3000 VIC" }
# }
Supported Countries
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file taxidpro-1.0.2.tar.gz
.
File metadata
- Download URL: taxidpro-1.0.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeabb1d9aa72d86e9c66d0c3ae595b3de8f0fb7cfc2df52627ad2b258d97f842 |
|
MD5 | c4e8997ab2e73e32278f6a6862b05c50 |
|
BLAKE2b-256 | 3957870d76f67490325267a61d583c42f2262cc33d6c8aeddb056c24cb1663bf |
File details
Details for the file taxidpro-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: taxidpro-1.0.2-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cafb9bce9ec2bbc0bfc3c0a22693d8ee6656e3713766423314ee053998cd7509 |
|
MD5 | 86442b7283efe7317e6169588d3a4b33 |
|
BLAKE2b-256 | 3e1576c71a085a0da78d5c25fa9b5e79c8239e11deee1922c2ef9d95e55ad5ea |