I'm doing some scraping of a page and I'm fine with getting most fields, but having some problems with the address.
<address>
56 South Ave
<br>
Miami, FL 33131
<br>
</address>
address = myWebPage.xpath("//div[contains(@class,'rightcol')]//address")
I can get the first line, 56 South Avenue, using the above code. But I can't get the city, state, zip. How would I change the code to get the full address?