Metadata-Version: 2.1
Name: ABN
Version: 1.0.0
Summary: Validate Australian Business Numbers.
Home-page: https://gitlab.com/Sturm/python-abn
Author: Ben Sturmfels
Author-email: ben@sturm.com.au
License: UNKNOWN
Project-URL: Source, https://gitlab.com/Sturm/python-abn
Project-URL: Bug Reports, https://gitlab.com/Sturm/python-abn/-/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6

===
ABN
===

This package validates Australian Business Numbers (ABNs) and converts Australian Company Numbers (ACNs) or Australian Registered Body Numbers (ARBNs) to ABNs.

The following example show checking of a valid and an invalid ABN:

.. code-block:: python

    >>> import abn
    >>> abn.validate('53004085616')
    '53 004 085 616'

    >>> abn.validate('99999999999')
    False


To calculate the ABN based on an existing ACN or ARBN:

.. code-block:: python

    >>> abn.acn_to_abn('004085616')
    '53 004 085 616'


To run the tests or your current Python:

.. code-block:: bash

    $ python setup.py test

To run the tests over all supported Python versions, install Tox and run:

.. code-block:: bash

    $ tox

Release History
---------------

1.0.0 (2021-09-29)
++++++++++++++++++

 - Switch to setup.cfg.
 - Require Python 3.6.


0.4.2 (2018-09-06)
++++++++++++++++++

**Bug fixes**

 - Update CI testing to run on Python 3.5 (3.4 no longer available in testing
   environment).
 - Fix `acn_to_abn` for a single-digit remainder (nikicc).


0.4.0 (2018-05-01)
++++++++++++++++++

**Improvements**

 - Add GitLab continuous integration script to run tox tests.

**Bug fixes**

 - Treat an ABN with leading zero as invalid (Charley Peng).


0.3.7 (2016-08-03)
++++++++++++++++++

**Improvements**

 - Add test suite to `setup.py`. You can run with `python setup.py test`.


0.3.6 (2015-08-03)
++++++++++++++++++

**Bug fixes**

 - Enable tests for Python 2.7, 3.3 and 3.4.


