import requests
from bs4 import BeautifulSoup
response = requests.get("https://www.stackoverflow.com/questions")
soup = BeautifulSoup(response.text, "html.parser")
questions = soup.select(".question-summary")
print(questions)
with this code I keep getting the result - []
If I add a [0] to the print(questions[0]), I get the error - IndexError: list index out of range
Any ideas? I've tried really hard to try and solve this my self but nothing seems to be working for me. I'm new to python so maybe missing some modules or something?