

Shyamala Laura
-
Shyamala Laura replied to the discussion Scrape product specifications, images, shipping details -Amazon Brazil -Python in the forum General Web Scraping 4 months ago
Scrape product specifications, images, shipping details -Amazon Brazil -Python
To scrape product images, identify the img tags containing image URLs, usually part of a gallery. Use Selenium to extract the src attribute for all available images on the page.
from selenium import webdriver from selenium.webdriver.common.by import By
driver = webdriver.Chrome()
driver.get('https://www.amazon.com.br/dp/product-page')
# Scrape…
-
Shyamala Laura replied to the discussion Scrape product name, price, stock availability from Argos UK using Go and Colly? in the forum General Web Scraping 4 months ago
Scrape product name, price, stock availability from Argos UK using Go and Colly?
To scrape the price, use Colly to locate the price element, usually within a div or span tag. You can use the OnHTML method to fetch the element and extract its text.
package main import (
"fmt"
"log"
"github.com/gocolly/colly"
)
func main() {
// Create a new collector
c := colly.NewCollector()
// Extract product…
-
Shyamala Laura started the discussion Extract shipping fees from Amazon UK product pages using Node.js in the forum General Web Scraping 4 months ago
Extract shipping fees from Amazon UK product pages using Node.js
Scraping shipping fees from Amazon UK requires setting up a Node.js script using Puppeteer for efficient handling of dynamic content. Shipping fees are often displayed near the pricing section or as part of the delivery options on the product page. These fees may vary depending on the user’s location or the availability of specific…
-
Shyamala Laura changed their photo 4 months ago
-
Shyamala Laura became a registered member 4 months ago