Metadata-Version: 2.1
Name: address-magic
Version: 0.1.0
Summary: address parsing
Author: Unseen Giants
Author-email: incoming+unseen-giants-ungi-utils-26498131-issue-@incoming.gitlab.com
License: MIT
Platform: UNKNOWN
License-File: LICENSE


# Table of Contents

# Address magic

Address magic is a wraper around [postal](https://github.com/openvenues/pypostal).

example:

    from address_magic import Address
    address = Address("The Book Club 100-106 Leonard St, Shoreditch, London, Greater London, EC2A 4RH, United Kingdom")
    print(address.road)
    print(address.country)
    print(address.postcode)



