-
Odarnat Bergliot replied to the discussion What’s the best way to extract weather data from sites like NOAA or Weather.com? in the forum General Web Scraping a year ago
What’s the best way to extract weather data from sites like NOAA or Weather.com?
Scheduling my scraper to check weather data at fixed intervals helps capture day-to-day changes and analyze patterns over time.
-
Gerel Tomislav replied to the discussion Scrape customer reviews from Tesco Lotus Thailand using Node.js and Puppeteer? in the forum General Web Scraping a year ago
Scrape customer reviews from Tesco Lotus Thailand using Node.js and Puppeteer?
To scrape customer reviews from Tesco Lotus Thailand using Puppeteer, you’ll need to handle dynamic content. As you navigate to a product page, Puppeteer will allow you to wait for the reviews section to load fully. Extracting review details such as user ratings and comments can be done using CSS selectors. It’s also important to handle any…
-
Odarnat Bergliot changed their photo a year ago
-
Gerel Tomislav replied to the discussion Scrape product availability, price from Central Thailand’s using Python n Scrapy in the forum General Web Scraping a year ago
Scrape product availability, price from Central Thailand’s using Python n Scrapy
Scraping Central Thailand requires attention to both static and dynamic content, especially for prices and product availability. Scrapy excels at parsing static content, but for more complex sites with dynamic loading, you might need to ensure that you are targeting the correct elements. Scraping the prices and availability status can…
-
Odarnat Bergliot became a registered member a year ago
-
Gerel Tomislav started the discussion Extract reviews, pricing, product specifications from Tesco UK using Node.js in the forum General Web Scraping a year ago
Extract reviews, pricing, product specifications from Tesco UK using Node.js
Scraping data from Tesco UK requires careful planning to handle the dynamic content commonly found on their website. The first step is to identify the key elements on the webpage that correspond to customer reviews, pricing trends, and product specifications. This can be done by inspecting the HTML structure using browser developer tools.…
-
Gerel Tomislav changed their photo a year ago
-
Gerel Tomislav became a registered member a year ago
-
Adelbert Nana replied to the discussion How can I scrape product reviews from Shopee Thailand using Node.js n Puppeteer? in the forum General Web Scraping a year ago
How can I scrape product reviews from Shopee Thailand using Node.js n Puppeteer?
To scrape Shopee Thailand reviews, Puppeteer provides the ability to simulate human actions, such as clicking and scrolling, to ensure you can capture all reviews on a product page. Once on the page, you can extract relevant details like the review text, ratings, and the reviewer’s name by querying the appropriate DOM elements.
const puppeteer =…
-
Adelbert Nana replied to the discussion How can I scrape product data from Lazada Thailand using Python n BeautifulSoup? in the forum General Web Scraping a year ago
How can I scrape product data from Lazada Thailand using Python n BeautifulSoup?
Scraping Lazada Thailand with BeautifulSoup can also involve navigating through multiple pages to scrape all products. Pagination is often hidden in JavaScript, but requests can fetch each page’s HTML for parsing. In this example, we fetch the product listings and parse the title, price, and ratings (if available). If you want to go deeper, you…
- Load More