datamade / usaddress

:us: a python library for parsing unstructured United States address strings into address components
https://parserator.datamade.us/usaddress
MIT License
1.53k stars 303 forks source link

Bronx address parsed incorrectly #197

Closed ishiland closed 7 years ago

ishiland commented 7 years ago

Hello, Great resource, thanks for your work.

The following address: 1650 GRAND CONCOURSE,BRONX,10457

Is parsed as: (OrderedDict([('AddressNumber', u'1650'), ('StreetName', u'GRAND'), ('PlaceName', u'CONCOURSE'), ('StateName', u'BRONX'), ('ZipCode', u'10457')]), 'Street Address')

EDIT: looks like if you add NY to the string, the address is parsed correctly. I will close this issue and try and clean my data better.