I'm trying to build web Scraper using BeautifulSoup , but when i'm compiling the code it gives find_all method has no attributes
. Here is the code :
page = requests.get("https://www.bing.com/images/search")
soup = BeautifulSoup(page.content,'html.parser')
print(soup.find_all('a'))
week = soup.find(id='b_results')
print(week.find_all('li'))