-
Isaia Niko became a registered member a year ago
-
Monica Nerva replied to the discussion Scrape product name, price, stock availability from Argos UK using Go and Colly? in the forum General Web Scraping a year ago
Scrape product name, price, stock availability from Argos UK using Go and Colly?
For stock availability, use Colly to find the element that indicates whether the product is in stock or out of stock. Extract the text from the element, which might show terms like “In Stock” or “Out of Stock.”
package main
import ("fmt"
"log"
"github.com/gocolly/colly"
)
func main() {
// Create a new collector
c := colly.NewCollector()
//…
-
Monica Nerva replied to the discussion How can I scrape product features, price, promotions from Ponto Frio Brazil? in the forum General Web Scraping a year ago
How can I scrape product features, price, promotions from Ponto Frio Brazil?
To scrape promotions, locate the section where discounts or special offers are displayed. Use page.$eval() to extract the promotion text. This is often presented as a percentage discount or special note within the product section.
const puppeteer = require('puppeteer'); (async () => {
const browser = await puppeteer.launch({ headless: true…
-
Monica Nerva started the discussion Extract shipping policies from Ceneo Poland using Node.js in the forum General Web Scraping a year ago
Extract shipping policies from Ceneo Poland using Node.js
Ceneo is one of the most popular price comparison websites in Poland, helping customers find the best deals on various products. Scraping shipping policies from Ceneo involves focusing on the delivery details that are often provided by individual sellers. These policies typically include shipping costs, estimated delivery times, and options…
-
Monica Nerva changed their photo a year ago
-
Monica Nerva became a registered member a year ago
-
Nitin Annemarie 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 ratings, locate the element displaying customer ratings, often in a span or div tag. Use DOMXPath to select and extract the rating value.
<?php require 'vendor/autoload.php';
use GuzzleHttpClient;
// Initialize Guzzle client
$client = new Client();
$response = $client->get('https://www.asos.com/product-page');
$html…
-
Nitin Annemarie replied to the discussion Extract top deals, shipping costs, and ratings from John Lewis UK using Go in the forum General Web Scraping a year ago
Extract top deals, shipping costs, and ratings from John Lewis UK using Go
To make the script more robust, you can include a retry mechanism for failed requests. Colly provides built-in support for retries, which is useful for handling temporary network issues or server-side rate-limiting.
-
Nitin Annemarie started the discussion Scrape customer reviews from Zalando Poland using Python in the forum General Web Scraping a year ago
Scrape customer reviews from Zalando Poland using Python
Zalando is one of Poland’s most popular online fashion retailers, known for its extensive collection of clothing and accessories. Scraping customer reviews from Zalando Poland involves using Python with the requests and BeautifulSoup libraries to parse HTML content. Reviews are typically located in a dedicated section of the product page, often…
-
Nitin Annemarie changed their photo a year ago
- Load More