Open RafaelCenzano opened 3 years ago
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)
[]
Pyap doesn't seem to capture any addresses containing PO Boxes, Unit (number), and Floor (number)/ (number th) Floor.