It's my first question here I started learning python, already watched many videos.
Appreciate if you can enlighten me on my code below,
I get below error "AttributeError: 'NoneType' object has no attribute 'find'"
I simply need to search a word (parrot in this instance) and scrape and list down the Titles in class:"snippet"
import requests
from bs4 import BeautifulSoup
page = requests.get("http://web.archive.org/web/*/parrot#")
soup = BeautifulSoup(page.content, 'html.parser')
container = soup.find("div", {"class":"search-result-container container"})
mysnippet = container.find("div", {"class":"snippet"})
print("List of Titles")
print(mysnippet)