Skip to main content

Address parser

Project description

Address Parser
======================

Yet another python address parser.

from address_parser import Parser
import csv

parser = Parser()

ps = parser.parse('1089-1099 Carlsbad Village Dr, Carlsbad, CA')

print ps.dict # Dictionary form, with all components

print ps.args # Simple dictionary, for use in arguments lists.

A complete dictionary output looks like:

{'hash': '34c56b214a1dd719227f829278755d1b',
'locality': {'city': 'Carlsbad', 'state': 'CA', 'type': 'P', 'zip': None},
'number': {'end_number': None,
'fraction': None,
'is_block': False,
'number': 1089,
'suite': None,
'tnumber': '1089',
'type': 'P'},
'road': {'direction': '',
'name': 'Carlsbad Village',
'suffix': 'Dr',
'type': 'P'},
'text': '1089 Carlsbad Village Dr, Carlsbad, CA'}

The argument form looks like:

{'city': 'Carlsbad',
'direction': '',
'name': 'Carlsbad Village',
'number': 1089,
'state': 'CA',
'suffix': 'Dr',
'zip': None}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

address_parser-0.0.1.tar.gz (10.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page