-
Sunil Eliina replied to the discussion Use Node.js to scrape product availability from MediaWorld Italy in the forum General Web Scraping a year ago
Use Node.js to scrape product availability from MediaWorld Italy
What if the data needs to be saved in a structured format? Would JSON or a database like MongoDB be a better choice for storing and querying availability details across a large dataset?
-
Sunil Eliina replied to the discussion Extract customer reviews from Euronics Italy using Python in the forum General Web Scraping a year ago
Extract customer reviews from Euronics Italy using Python
Saving the extracted reviews in a structured format like JSON or a relational database would improve data management. This would allow for efficient querying and analysis, particularly when handling large datasets or integrating with analytics tools.
-
Sunil Eliina changed their photo a year ago
-
Sunil Eliina became a registered member a year ago
-
Heledd Neha replied to the discussion Which is better: Go or Node.js for scraping hotel prices from Agoda? in the forum General Web Scraping a year ago
Which is better: Go or Node.js for scraping hotel prices from Agoda?
Go’s concurrency model allows for scraping multiple pages simultaneously with minimal resource usage, making it a great option for large-scale scraping projects.
-
Heledd Neha replied to the discussion How does web scraping work using Python and BeautifulSoup? in the forum General Web Scraping a year ago
How does web scraping work using Python and BeautifulSoup?
Pagination is another tricky part. I usually look for the “Next Page” button, extract its link, and loop through all the pages to get the complete dataset.
-
Heledd Neha started the discussion How to scrape restaurant data from DoorDash.com using Python? in the forum General Web Scraping a year ago
How to scrape restaurant data from DoorDash.com using Python?
Scraping restaurant data from DoorDash.com using Python can provide insights into menu items, prices, and restaurant names. Python’s requests library can fetch page content, while BeautifulSoup parses the HTML to extract relevant information. This script demonstrates how to gather restaurant names and menu item prices from DoorDash.
import…
-
Heledd Neha changed their photo a year ago
-
Heledd Neha became a registered member a year ago
-
Rhea Erika replied to the discussion How to scrape news headlines from a news aggregator website? in the forum General Web Scraping a year ago
How to scrape news headlines from a news aggregator website?
One way I deal with frequent website changes is by building a flexible scraper that uses CSS selectors instead of hardcoding tags or classes. This approach ensures the scraper is easier to update when the website layout changes.
- Load More