-
Heiko Nanda replied to the discussion Scrape product details, ratings, and delivery info ASOS UK using PHP and Guzzle? in the forum General Web Scraping a year ago
Scrape product details, ratings, and delivery info ASOS UK using PHP and Guzzle?
To scrape delivery information, find the section listing shipping options or delivery times, often located in a div or span tag. Use PHP with DOMXPath to extract this information.
<?php require 'vendor/autoload.php';
use GuzzleHttpClient;
// Initialize Guzzle client
$client = new Client();
$response…
-
Heiko Nanda started the discussion Compare using PHP and Node.js to scrape product ratings from ETMall Taiwan in the forum General Web Scraping a year ago
Compare using PHP and Node.js to scrape product ratings from ETMall Taiwan
How does scraping product ratings from ETMall Taiwan differ when using PHP versus Node.js? Is PHP’s DOMDocument better suited for parsing static HTML, or does Node.js with Puppeteer handle dynamic JavaScript-rendered content more effectively? Would either language provide a significant advantage when handling large-scale scraping across multiple…
-
Heiko Nanda changed their photo a year ago
-
Heiko Nanda became a registered member a year ago
-
Rayna Meinrad replied to the discussion Scrape product name, price, customer reviews from Magazine Luiza Brazil on Ruby? in the forum General Web Scraping a year ago
Scrape product name, price, customer reviews from Magazine Luiza Brazil on Ruby?
To gather customer reviews, identify the section of the page where reviews are listed, typically within div tags with specific classes. Iterate through these elements to extract individual reviews, capturing the review text and any associated metadata such as ratings.
require 'net/http' require 'nokogiri'
# Fetch the product page
url…
-
Rayna Meinrad replied to the discussion Scrape product name, discount, and shipping from Submarino Brazil using Node.js? in the forum General Web Scraping a year ago
Scrape product name, discount, and shipping from Submarino Brazil using Node.js?
To scrape shipping details from Submarino Brazil, use Cheerio to find the shipping section of the page. The shipping information, including estimated delivery times and shipping fees, is usually contained in a specific div or span. Extract this information by selecting the appropriate class or tag that holds the shipping text.
const axios…
-
Rayna Meinrad started the discussion Compare Ruby and Go to scrape shipping details from Yahoo! Taiwan in the forum General Web Scraping a year ago
Compare Ruby and Go to scrape shipping details from Yahoo! Taiwan
How does scraping shipping details from Yahoo! Taiwan differ when using Ruby versus Go? Is Ruby’s Nokogiri gem easier to implement for parsing HTML, or does Go’s Colly library provide better performance for large-scale scraping? How do both languages handle dynamically loaded content, such as shipping costs or estimated delivery times that…
-
Rayna Meinrad changed their photo a year ago
-
Rayna Meinrad became a registered member a year ago
-
Eliana Yoel replied to the discussion Scrape product description, images, and seller information -Americanas Brazil? in the forum General Web Scraping a year ago
Scrape product description, images, and seller information -Americanas Brazil?
To scrape seller information from Americanas Brazil, you can use Selenium to locate the seller’s details, which are often displayed as text or in a separate section. By targeting the seller’s name, contact info, or ratings, you can collect this data for each product. Be sure to handle cases where the seller information may not be available for…
- Load More