Skip to main content
Archived

This project has been archived by its maintainers, and is no longer receiving any updates.

Addressify Python Client
========================

.. image:: https://travis-ci.org/snowball-one/addressify.svg
:target: https://travis-ci.org/snowball-one/addressify


This is a simply Python client for the `addressify.com.au`_ API.

*"Addressify is a cloud based web API that allows web site, web application and
desktop application developers to easily implement free address verification,
validation, checking, parsing and autocomplete for Australia in their
applications."*

.. _addressify.com.au: http://www.addressify.com.au

Installation
------------

Since the Python addressify client has not yet been released to pypi, you will
need to install it from git. This can still be done using pip::

pip install git+https://github.com/snowball-one/addressify.git



Usage Quickstart
----------------

The Addressify Python client currently covers all the available api calls of
`addressify.com.au`_. e.g.:

.. code-block:: Python
from addressify import Client

client = Client(your_api_key)
results = client.auto_complete('109/175 Sturt Street, SOUTH')


API Calls Available
-------------------

client.auto_complete
++++++++++++++++++++

Gets a list of addresses that begin with the given term.

Arguments:

term (Required)
The start of an address.

state (Optional)
The state to search for addresses in. ('NSW', 'ACT', 'VIC', 'QLD', 'SA',
'WA', 'NT', 'TAS')

postcode (Optional)
The postcode to search for addresses in.

max_results (Optional)
The maximum number of results to return (minumum: 1, maximum: 20,
default: 10).


Example Response::

[
"1 GEORGE ST, TAHMOOR NSW 2573",
"1 GEORGE ST, TELARAH NSW 2320",
"1 GEORGE ST, TEMORA NSW 2666",
"1 GEORGE ST, TENTERFIELD NSW 2372",
"1 GEORGE ST, THE ROCKS NSW 2000"
]


client.address_line_auto_complete
+++++++++++++++++++++++++++++++++

Gets a list of address lines that begin with the given term.

Arguments:

term (Required)
The start of an address line.

state (Optional)
The state to search for addresses in. ('NSW', 'ACT', 'VIC', 'QLD', 'SA',
'WA', 'NT', 'TAS')

postcode (Optional)
The postcode to search for addresses in.

max_results (Optional)
The maximum number of results to return (minumum: 1, maximum: 20,
default: 10).

Example Response::

[
"1 GEORDIE ST",
"1 GEORGANN ST",
"1 GEORGE AVE",
"1 GEORGE CL",
"1 GEORGE CRES"
]

client.suburb_auto_complete
++++++++++++++++++++++++++++

Gets a list of suburbs that begin with the given term.

Arguments:

term (Required)
The start of a suburb name

state (Optional)
The state to search for addresses in. ('NSW', 'ACT', 'VIC', 'QLD', 'SA',
'WA', 'NT', 'TAS')

postcode (Optional)
The postcode to search for addresses in.

max_results (Optional)
The maximum number of results to return (minumum: 1, maximum: 20,
default: 10).

Example Response::

[
"SUFFOLK PARK",
"SUGARLOAF",
"SUMMER HILL",
"SUMMER HILL CREEK",
"SUMMER ISLAND"
]

client.suburb_state_postcode_auto_complete
++++++++++++++++++++++++++++++++++++++++++

Gets a list of suburbs and postcodes where the suburb begins with the given
term.

Arguments:

term (Required)
The start of a suburb name.

state (Optional)
The state to search for addresses in. ('NSW', 'ACT', 'VIC', 'QLD', 'SA',
'WA', 'NT', 'TAS')

postcode (Optional)
The postcode to search for addresses in.

max_results (Optional)
The maximum number of results to return (minumum: 1, maximum: 20,
default: 10).


Example Response::

[
"SUMMER HILL, NSW 2130",
"SUMMER HILL, NSW 2421",
"SUMMER HILL CREEK, NSW 2800",
"SUMMER ISLAND, NSW 2440",
"SUMMERHILL, TAS 7250"
]

client.suburbs_for_postcode
+++++++++++++++++++++++++++

Gets a list of suburbs for the given postcode.

Arguments:

postcode (Required)
The postcode.


Example Response::

[
"BARANGAROO, NSW 2000",
"DAWES POINT, NSW 2000",
"HAYMARKET, NSW 2000",
"MILLERS POINT, NSW 2000",
"SYDNEY, NSW 2000",
"SYDNEY SOUTH, NSW 2000",
"THE ROCKS, NSW 2000"
]

client.state_for_postcode
+++++++++++++++++++++++++

Gets the state in which the given postcode is located.

Arguments:

postcode (Required)
The postcode.

Example Response::
"NSW"


client.parse_address
++++++++++++++++++++

Parses the given address into it's individual address fields.

Arguments:

address_line (Required)
The address to parse.

Example Response::

addressify.client.Address(
number="680",
street="GEORGE",
street_type="ST",
suburb="SYDNEY",
street_suffix=None,
state="NSW",
street_line="680 GEORGE ST",
unit_type=None
unit_number=None,
postcode="2000"
)

client.get_similar
++++++++++++++++++

Gets a list of valid addresses that are similar to the given term, can be used
to match invalid addresses to valid addresses.

Arguments:

address_line (Required)
The address to find similar addresses for

max_results (Optional)
The maximum number of results to return (minumum: 1, maximum: 10,
default: 10).

Example Response::

[
"1 GEORGE ST, SYDNEY NSW 2000"
]

client.validate
+++++++++++++++

Checks whether the given address is valid. Please note that validation is only
performed on the street, suburb, state and postcode. Street and unit numbers
are not checked for validity.

Arguments

address_line (Required)
The address to validate.

Example Response::
true

client.daily_call_count
+++++++++++++++++++++++

Gets the current daily API call count for your account. This counter will reset
at midnight AEST. When this counter reaches the daily API call limit for your
account type all other Addressify API calls will fail until the counter resets.

Will return -1 if the api_key does not exist.

Example Response::
1000

Release files for addressify 0.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for addressify 0.0.1
File Size Uploaded
addressify-0.0.1.tar.gz 5.7 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for addressify 0.0.1
File Interpreter ABI Platform
addressify-0.0.1-py2-none-any.whl Python 2 none any Details

Total release size: 13.4 kB

Release files / addressify-0.0.1.tar.gz

Download URL addressify-0.0.1.tar.gz
Size 5.7 kB
Tags Source
SHA-256 checksum
How to use checksums
47a0233d5c2f62c521359a05c684db43340eace1b0e1f5bf34a291d4a18506e2
BLAKE2b-256 checksum
How to use checksums
6353084a89ddc21556a0ba4bf8d95d94e4ead9f4b16ebfe3877c654469aa6532
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / addressify-0.0.1-py2-none-any.whl

Download URL addressify-0.0.1-py2-none-any.whl
Size 7.7 kB
Tags Python 2
SHA-256 checksum
How to use checksums
7b6bd2e05c12b7f2e8a1e8ae80826cc12f85eb2e51d377dceb31748812eceb3e
BLAKE2b-256 checksum
How to use checksums
fd14aced569fff712e688959202a6643922cb29679f18178163a9016ffd928e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.0.1 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page