I am trying to scrape images from the home page of my school's website. But the catch is that these images are present in a slideshow. There are 9 images in total in the slideshow and I want to scrape all of them. I have no clue how I have to go about it, because all I can do with requests
is to scrape the first image of it. And I don't want to use selenium
because it is very slow. How can I scrape all images from the slideshow just by using requests
and BeautifulSoup
? Any help would be appreciated. Thanks!
P.S: I know that I have to provide the code that I have written so far, but the problem is that I haven't tried out anything so far as I really have no idea how to go about it, because this is the first time I am scraping images from a slideshow, so please forgive me. Plus, I already went through the answers for this question, but I didn't know how to implement the answer in my program.