I would like to scrape crime news articles from the website, but the soup object does not return the required div
tag, could anyone give me reasons for that?
import requests
from bs4 import BeautifulSoup
page = requests.get("https://www.nst.com.my/news/crime-courts?page=1")
soup = BeautifulSoup(page.text, 'html.parser')
print(soup)