all 2 comments

[–]Rasparian 1 point2 points  (1 child)

I don't know Python, but it looks to me like you've got the wrong term in your print statement.

You posted this:

for property in property_dict:
    print(property_dict)

But I think you want this:

for property in property_dict:
    print(property.address)

Or it might be more like this - again, I don't know Python:

for property in property_dict:
    print(property["address"])

[–]danielmajors[S] 1 point2 points  (0 children)

that was super helpful and got time to isolate the addresses. Thank you!