├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README ├── README.rst ├── address ├── __init__.py ├── address.py ├── address_list.py ├── cities.csv ├── dstk.py ├── streets.csv ├── suffixes.csv └── test │ ├── __init__.py │ └── test_address.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/README -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/README.rst -------------------------------------------------------------------------------- /address/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/__init__.py -------------------------------------------------------------------------------- /address/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/address.py -------------------------------------------------------------------------------- /address/address_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/address_list.py -------------------------------------------------------------------------------- /address/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/cities.csv -------------------------------------------------------------------------------- /address/dstk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/dstk.py -------------------------------------------------------------------------------- /address/streets.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /address/suffixes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/suffixes.csv -------------------------------------------------------------------------------- /address/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /address/test/test_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/address/test/test_address.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwoopSearch/pyaddress/HEAD/setup.py --------------------------------------------------------------------------------