Metadata-Version: 2.1
Name: vatnumber_xtra
Version: 1.4.1
Summary: Python module to validate VAT numbers
Home-page: http://code.google.com/p/vatnumber/
Download-URL: http://code.google.com/p/vatnumber/downloads/
Author: ximepa
Author-email: xim.michael@gmail.com
License: GPL-3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial :: Accounting
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
License-File: LICENSE
Requires-Dist: python-stdnum
Provides-Extra: suds
Requires-Dist: suds; extra == "suds"

vatnumber
=========

Python module to validate VAT numbers.

Nutshell
--------

This is a fork of vatnumber project https://pypi.org/project/vatnumber/

changed to work with python3 and setuptools > 58.0

Here a simple example to validate VAT numbers format::

    >>> import vatnumber_xtra
    >>> vatnumber_xtra.check_vat('BE0123456749')
    True

Here a simple example to validate European VAT through VIES service::

    >>> import vatnumber_xtra
    >>> vatnumber_xtra.check_vies('BE0897290877')
    True


For more information please visit the `vatnumber website`_.

.. _vatnumber website: http://code.google.com/p/vatnumber/
