import requests
from bs4 import BeautifulSoup
url = “Faculty of Economics | IIMA”
response = requests.get(url)
soup = BeautifulSoup(response.content, “html.parser”)
soup.find_all(‘div’, {‘class’: ‘col-md-3 col-12 wow fadeInUp animated’})
Hi, I don’t understand why the last line is giving an empty list. I was expecting it will provide info on faculty.