-
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…
-
Eliana Yoel replied to the discussion Scrape product name, price, rating from Mercado Livre Brazil using Puppeteer? in the forum General Web Scraping a year ago
Scrape product name, price, rating from Mercado Livre Brazil using Puppeteer?
To scrape the rating from Mercado Livre Brazil, you’ll need to target the element that holds the product’s rating. Ratings are often displayed as star icons or a numeric value. You can use Puppeteer to select the span or div containing the rating and extract it once the page is fully loaded.
const puppeteer = require('puppeteer'); (async () =>…
-
Eliana Yoel started the discussion Compare Python and Node.js to scrape product reviews from Momo Taiwan in the forum General Web Scraping a year ago
Compare Python and Node.js to scrape product reviews from Momo Taiwan
What are the differences between using Python and Node.js to scrape product reviews from Momo Taiwan, a leading e-commerce platform? Does one programming language provide advantages over the other in handling dynamic content? Would Python’s BeautifulSoup and requests libraries be more efficient for parsing static HTML, while Node.js with…
-
Eliana Yoel changed their photo a year ago
-
Eliana Yoel became a registered member a year ago
-
Jochem Gunvor replied to the discussion How to fetch property data using Redfin API with Python? in the forum General Web Scraping a year ago
How to fetch property data using Redfin API with Python?
For endpoints requiring authentication, I store API keys or tokens securely in environment variables. This approach avoids exposing sensitive credentials in the source code.
-
Jochem Gunvor replied to the discussion How to scrape movie titles and links on YesMovies.org (unblocked) using Python? in the forum General Web Scraping a year ago
How to scrape movie titles and links on YesMovies.org (unblocked) using Python?
I use Selenium’s ActionChains to simulate user interactions, like mouse movements and clicks, which help avoid detection and prevent CAPTCHA challenges from appearing.
- Load More