About Anaconda Help Download Anaconda

gwerbin / packages / usaddress 0.5.10

Parse US addresses using conditional random fields

Installers

  • linux-64 v0.5.10

conda install

To install this package run one of the following:
conda install gwerbin::usaddress

Description

usaddress is a python library for parsing unstructured address strings into address components, using advanced NLP methods.

From the python interpreter:

>>> import usaddress
>>> usaddress.parse('123 Main St. Suite 100 Chicago, IL')
[('123', 'AddressNumber'),
 ('Main', 'StreetName'),
 ('St.', 'StreetNamePostType'),
 ('Suite', 'OccupancyType'),
 ('100', 'OccupancyIdentifier'),
 ('Chicago,', 'PlaceName'),
 ('IL', 'StateName')]

© 2024 Anaconda, Inc. All Rights Reserved. (v4.0.2) Legal | Privacy Policy