I am checking through a list of addresses. It would be nice if I could just
try:
address = ap.parse_address(WorkAddress)
except AddressException:
# handle error here
I expect my list to have errors, I just don't want to go through thousands manually.
Thank You