url = "http://books.toscrape.com/"
response = requests.get(url)

# TODO: Create a `BeautifulSoup` instance with that data
soup = BeautifulSoup(response.content, "html.parser")