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

Hi, I'm parsing multiple addresses in Rhode Island and am seeing the state name consistently parsed incorrectly as 'Island'. Some sample addresses: ``` 180 Waterwheel Ln North Kingstown Rhode Island...

usaddress.RepeatedLabelError: ERROR: Unable to tag this string because more than one area of the string has the same label ORIGINAL STRING: 2501 S W S YOUNG DR KILLEEN TX 76542...

The following address is being parsed incorrectly: 34 NE Avenue F Belle Glade, FL 33430 See attached. The city should be Belle Glade.

Ran into an issue parsing address with street 'SAN GABRIEL PLACE' PARSED TOKENS include: ('SAN', 'StreetName'), ('GABRIEL', 'PlaceName'), ('PLACE', 'PlaceName') UNCERTAIN LABEL: PlaceName Love the module, thanks for creating it!

Input : "California Montebello: 1228 Date Street 90640 Honolulu: 585 D. Manani Pl 96818 Honolulu: 808 Ahua Street # PA164" we can see first address : California Montebello: 1228 Date...

``` RepeatedLabelError: ERROR: Unable to tag this string because more than one area of the string has the same label ORIGINAL STRING: 32 OLD SLIP, 15TH FLOOR NEW YORK, NY,...

It is not able to tag any addresses which starts with street names like below 1. CATALPA CT 60490 2. BLACK OAK CT 60490 3. SYCAMORE CT 4. RED BARN...

Hi, The following address is real but the parser couldn't parse it, it gave the RepeatedLabelError. Thanks 5939 CASTLE CREEK PARKWAY NORTH DR, INDIANAPOLIS, IN 46250

parsing a long list of addresses with tag, code broke down when it didn't recognize Camas, WA as a valid city: ('apt', 'OccupancyType'), ('1', 'OccupancyIdentifier'), ('camas', 'PlaceName'), ('wa', 'StateName')] UNCERTAIN...

Hello! FIrst off, thank you for this incredibly helpful library :) I was trying to parse `9622 South Avenue N, Chicago, IL 60617` and got the following results (apologies for...