You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a sample address: 111 East Hampton Street Apartment Z507
that once parsed, I would expect to be: 111 E Hampton St Apt Z507
However, the StreetAddressFormatter does not change the address at all. Here is my code:
fromstreetaddressimportStreetAddressFormatterstreet='111 East Hampton Street Apartment Z507'add_fmtter=StreetAddressFormatter()
street=add_fmtter.append_TH_to_street(street)
street=add_fmtter.abbrev_direction(street)
street=add_fmtter.abbrev_street_avenue_etc(street)
print(street)
This incorrectly gives: 111 East Hampton Street Apartment Z507
The text was updated successfully, but these errors were encountered:
Hi @mkurtipek, I posted this issue over 2 years ago so it's possible the library was updated with a fix. I no longer use the library, so you can close this issue if needed.
I have a sample address:
111 East Hampton Street Apartment Z507
that once parsed, I would expect to be:
111 E Hampton St Apt Z507
However, the StreetAddressFormatter does not change the address at all. Here is my code:
This incorrectly gives:
111 East Hampton Street Apartment Z507
The text was updated successfully, but these errors were encountered: