-
Jay Zorka started the discussion Use Ruby to scrape prices from Allegro Poland product pages in the forum General Web Scraping a year ago
Use Ruby to scrape prices from Allegro Poland product pages
Allegro is the largest online marketplace in Poland, hosting millions of products from various sellers. Scraping prices from Allegro product pages can be accomplished using Ruby with the Nokogiri gem, which allows efficient parsing and extraction of HTML content. Prices on Allegro are usually prominently displayed near the product title or in…
-
Jay Zorka changed their photo a year ago
-
Jay Zorka became a registered member a year ago
-
Flora Abdias replied to the discussion Analyze discounts, seller details, and shipping options from ASDA UK using PHP in the forum General Web Scraping a year ago
Analyze discounts, seller details, and shipping options from ASDA UK using PHP
The script could be improved by adding error handling for missing elements. For example, if discounts or shipping options are not found, logging these cases separately can help identify trends in missing data.
-
Flora Abdias replied to 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
The script can be improved by adding error handling for elements that may not load properly due to network delays or changes in the website structure. For example, adding a try-catch block around the scraping functions can ensure the script continues running even if a specific section fails.
-
Flora Abdias started the discussion Scrape product availability from Otto Germany using Python in the forum General Web Scraping a year ago
Scrape product availability from Otto Germany using Python
Otto is one of the most popular e-commerce platforms in Germany, known for its wide variety of products ranging from fashion to electronics. Scraping product availability from Otto involves using Python with the requests and BeautifulSoup libraries to fetch and parse the HTML content of a product page. Product availability is typically…
-
Flora Abdias changed their photo a year ago
-
Flora Abdias became a registered member a year ago
-
Ariah Alfred replied to the discussion How can I scrape product details, seller ratings, delivery Shoptime Brazil? in the forum General Web Scraping a year ago
How can I scrape product details, seller ratings, delivery Shoptime Brazil?
To scrape delivery options, locate the section that lists shipping costs, times, or options such as express delivery. With Playwright, you can extract this information by targeting the appropriate element and printing its content.
from playwright.sync_api import sync_playwright with sync_playwright() as p:
browser…
-
Ariah Alfred replied to the discussion How can I scrape product name, price, stock status from Extra Brazil Java Jsoup? in the forum General Web Scraping a year ago
How can I scrape product name, price, stock status from Extra Brazil Java Jsoup?
For scraping the stock status, you can target the section indicating whether the product is in stock or out of stock. Using Jsoup, fetch the relevant HTML tag and extract its text to display availability.
import org.jsoup.Jsoup; import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public class ScrapeExtra {
public static…
- Load More