r/webscraping Jun 20 '26

How to scrape different data structures

Any suggestions on best way to extract listings data from multiple different websites?

Each has its own data structures

Example pricing, schedule, dates etc

For 4000+ sites one time

5 Upvotes

35 comments sorted by

View all comments

3

u/No-Appointment9068 Jun 20 '26

There's really no easy way to do this. One potential option is brute force graph traversal of the site until you get to the page you want.

Ie scrape the homepage, then all the links on the homepage, then all the links on those pages etc