usaddress icon indicating copy to clipboard operation
usaddress copied to clipboard

:us: a python library for parsing unstructured United States address strings into address components

Results 131 usaddress issues
Sort by recently updated
recently updated
newest added

ORIGINAL STRING: 6451 E PACIFIC COAST HWY 21 PARSED TOKENS: [('6451', 'AddressNumber'), ('E', 'StreetNamePreDirectional'), ('PACIFIC', 'StreetName'), ('COAST', 'StreetName'), ('HWY', 'StreetNamePreType'), ('21', 'StreetName')] UNCERTAIN LABEL: StreetName Not sure why I am...

I've been using this library to parse college addresses, some of which will contain room numbers + building names in addition to normal street addresses. Unfortunately this breaks the tag...

Hi I am getting a RepeatedLabelError: when running `usaddress.tag('12 LITTLE WEST 12TH STR')` Here is the error: `ERROR: Unable to tag this string because more than one area of the...

I have an address "22118 E VIA DEL PALO QUEEN CREEK 85142". The result returned by default model is ``` 22118: AddressNumber E: StreetNamePreDirectional VIA: StreetNamePreType DEL PALO QUEEN: StreetName...

`"post road and old country lane, building M"` is parsed as Address part | Tag -- | -- post | StreetName road | StreetNamePostType and | IntersectionSeparator old country |...

Hey , I am getting some unwanted error while parsing the new_addresses.csv file of my own. Not able to figure out what the matter is. This is how the file...

The Address Number Suffix is not getting parsed from the Address Number. For example: 1681A GREENWICH ST SAN FRANCISCO CA 94123 Expecting: AddressNumber = 1681 AddressNumberSuffix = A Getting: Address...

Address: 3101 MARTIN LUTHER KING JR BLV SACRAMENTO 95817-3335 CA Building: https://www.google.com/maps/place/3101+Martin+Luther+King+Jr+Blvd,+Sacramento,+CA+95817/@38.5462238,-121.4666307,17z/data=!3m1!4b1!4m5!3m4!1s0x809ad0689e6abb9d:0xc9a0a01831975832!8m2!3d38.5462196!4d-121.464442 Output of `tag`: ``` OrderedDict([('AddressNumber', '3101'), ('StreetName', 'MARTIN LUTHER KING JR BLV SACRAMENTO'), ('OccupancyIdentifier', '95817-3335'), ('StateName', 'CA')]) ```...

Address: 10600 FOLSOM BLVD RANCHO CORDOVA 95670 CA Here is the building: https://www.google.com/maps/place/10600+Folsom+Blvd,+Rancho+Cordova,+CA+95670/@38.5959125,-121.293499,17z/data=!3m1!4b1!4m5!3m4!1s0x809add118796d177:0x8a022bc11033cc22!8m2!3d38.5959083!4d-121.2913103 What happened: `Rancho Cordova` is a two word city in CA. Cordova appears to be parsed out...

Great library. I'm having a problem with this address: 10570 SW 8 ST miami fl 33155 When parsed , the city is parsed as "ST Miami" instead of "Miami" If...