I am not able to get to the div within so many nested divs. . . .
<div class="list-card-price">$2,600/mo</div>
. . .
I am using this method to retrive it:
from bs4 import BeautifulSoup
import requests
import lxml
response = requests.get(url="https://www.zillow.com/homes/for_rent/1-_beds/?.....")
data = response.text
soup = BeautifulSoup(data,"lxml")
price_list = []
price_tag = soup.select_one(name='div',class_="list-card-price")
print(price_tag)