We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
usaddress.tag('1000 TRAVER CT 48105')[0] correctly yields => OrderedDict([('AddressNumber', '1000'), ('StreetName', 'TRAVER'), ('StreetNamePostType', 'CT'), ('ZipCode', '48105')])
Change the street, however, to
usaddress.tag('1000 TIBBITS CT 48105')[0] and you get => OrderedDict([('AddressNumber', '1000'), ('PlaceName', 'TIBBITS'), ('StateName', 'CT'), ('ZipCode', '48105')])
Suddenly it thinks it's Tibbits, Connecticut. (And there doesn't even seem to be a Tibbits, Connecticut.)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
usaddress.tag('1000 TRAVER CT 48105')[0] correctly yields =>
OrderedDict([('AddressNumber', '1000'),
('StreetName', 'TRAVER'),
('StreetNamePostType', 'CT'),
('ZipCode', '48105')])
Change the street, however, to
usaddress.tag('1000 TIBBITS CT 48105')[0] and you get =>
OrderedDict([('AddressNumber', '1000'),
('PlaceName', 'TIBBITS'),
('StateName', 'CT'),
('ZipCode', '48105')])
Suddenly it thinks it's Tibbits, Connecticut. (And there doesn't even seem to be a Tibbits, Connecticut.)
The text was updated successfully, but these errors were encountered: