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

import usaddress usaddress.parse('480 wahington Blvd,Jersey City,NJ-07310') Output: [('480', 'AddressNumber'), ('wahington', 'StreetName'), ('Blvd,', 'StreetNamePostType'), ('Jersey', 'PlaceName'), ('City,', 'SubaddressType'), ('NJ-07310', 'SubaddressIdentifier')] 'Jersey City' should be tagged to 'City'

![image](https://user-images.githubusercontent.com/1326248/80846046-4f659980-8bc8-11ea-8377-612a4c3a90a1.png) This address should have been parsed as: 1940 - AddressNumber E - StreetNamePreDirectional 5625 - StreetName S - StreetNamePostDirectional I'm guessing it's because the address number is a multiple...

usaddress supports the label "CountryName", as can be seen by parsing `123 Cedar Ave Salt Lake City Utah 84105 USA` yet the label "CountryName" is missing from the list of...

usaddress.RepeatedLabelError: ERROR: Unable to tag this string because more than one area of the string has the same label ORIGINAL STRING: 101 W Avenida Vista Hermosa Suite 122 San Clemente...

Hi folks, Thanks for this great tool. I'm using it to parse a dataframe which has Address_1, Address_2, City, State, and Zip columns. After parsing, some of the records with...

When I create a large address book to parse, there is an error I get from parsing python Faker addresses. There are times when PO BOX doesn't work or weird...

If the OccupancyIdentifer coincides with a state abbreviation, usaddress interprets this as a state and results in RepeatedLabelError for example: '525R FITZWATER ST, Suite CA, Philadelphia, PA, 19147-3030'

If the Occupancy identify coincides with a state abbreviation, usaddress interprets this as a state and results in RepeatedLabelError for example '525R FITZWATER ST, Suite CA, Philadelphia, PA, 19147-3030'

The address: "37 OCEAN ISLE WEST BLVD OCEAN ISLE BEACH NC 28469" It seems to me that the address, aside from having the street coincidentally called Ocean Isle BLV while...