-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
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
Certain Addresses not captured #18
Comments
Please provide some examples |
words = """
random text
testing
PO Box 234
Dallas, TX 75229-9647
other text
"""
addresses = pyap.parse(words, country="US")
print(addresses)
[] |
words = """
more random text
456 20th Ave Floor 10
Dallas TX 75229
other text
"""
addresses = pyap.parse(words, country="US")
print(addresses)
[] |
words = """
some text
456 20th Ave Unit 10
Dallas TX 75229
random text
"""
addresses = pyap.parse(words, country="US")
print(addresses)
[] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pyap doesn't seem to capture any addresses containing PO Boxes, Unit (number), and Floor (number)/ (number th) Floor.
The text was updated successfully, but these errors were encountered: