Python Forum
I am scraping a web page but got an Error
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I am scraping a web page but got an Error
#1
I am trying to apply a program for scaping a webpage but the program was not executed sussfully. I am getting the error:

Error:
IndexError: list index out of range
The program I am executing is as follows:

import requests
from bs4 import BeautifulSoup
response = requests.get("https://stackoverflow.com/questions")
soup = BeautifulSoup(response.text, "html.parser")
questions = soup.select(".question-summary")
#print(type(questions[0]))
print(questions[0].attrs)
I would appreciate any help or idea as to why this was happening
Reply
#2
questions returns None, thus the error.
I cannot find '.question-summary' anywhere on that webpage.
Reply
#3
@Larz60+
Hello
Thanks for the reply. I will check and follw back
Reply
#4
The (.question-summary) is a CSS class taken from the questions page of the website. I got it by write clicking on the website page and inspect as in the picture below
[Image: M2TX5]
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Scraping the page without distorting content oleglpts 5 2,502 Dec-16-2021, 05:08 PM
Last Post: oleglpts
  Scraping a page with log in data (security, proxies) iamaghost 0 2,155 Mar-27-2021, 02:56 PM
Last Post: iamaghost
  Scraping .aspx page Larz60+ 21 51,273 Mar-18-2021, 10:16 AM
Last Post: Larz60+
  Scraping Whole Page Source GJG 1 2,154 Jan-13-2021, 03:19 PM
Last Post: GJG
  error in code web scraping alexisbrunaux 5 3,815 Aug-19-2020, 02:31 AM
Last Post: alexisbrunaux
  error zomato scraping data syxzetenz 3 3,381 Jun-23-2020, 08:53 PM
Last Post: Gribouillis
  Web scraping error jithin123 0 2,441 Mar-22-2020, 08:13 PM
Last Post: jithin123
  use Xpath in Python :: libxml2 for a page-to-page skip-setting apollo 2 3,643 Mar-19-2020, 06:13 PM
Last Post: apollo
  Scraping next page of LinkedIn jobs RiteshMahto 6 6,432 Dec-09-2019, 09:43 PM
Last Post: Larz60+
  Web Scraping Error : Not getting expected result adminravi 4 2,394 Oct-08-2019, 09:53 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020