Skip to content

Instantly share code, notes, and snippets.

@MrZ-777
Forked from kgaughan/checkeuvat.py
Created June 15, 2019 12:14
Show Gist options
  • Save MrZ-777/5e8a3fd641682011b4c05b2a49d48c61 to your computer and use it in GitHub Desktop.
Save MrZ-777/5e8a3fd641682011b4c05b2a49d48c61 to your computer and use it in GitHub Desktop.
Checking an EU VAT number using the VIES SOAP interface
from suds.client import Client
client = Client('http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl')
# Returns a dict-like object with the fields 'countryCode', 'vatNumber',
# 'requestDate', 'valid' (boolean), 'name', and 'address'.
result = client.service.checkVat('IE', '6390845P')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment