

Aridai Farzona
-
Aridai Farzona replied to the discussion How can I scrape mobile-only websites from a desktop environment? in the forum General Web Scraping 4 months ago
How can I scrape mobile-only websites from a desktop environment?
Try using Playwright or Puppeteer, both of which allow you to emulate mobile devices completely. They also support different network profiles, which is handy if you need to mimic mobile network speeds.
-
Aridai Farzona replied to the discussion Is Python really the best language for web scraping, or should I consider altern in the forum General Web Scraping 4 months ago
Is Python really the best language for web scraping, or should I consider altern
I’d say it depends on the scale. Python is efficient for prototyping and small-to-medium projects, but for high-frequency scraping, GoLang’s concurrency might be worth looking into. It can be much faster for handling parallel requests.
-
Aridai Farzona replied to the discussion How do I identify hidden APIs that might be easier to scrape? in the forum General Web Scraping 4 months ago
How do I identify hidden APIs that might be easier to scrape?
GraphQL can be easier to scrape because you can specify exactly what data you want.
-
Aridai Farzona replied to the discussion What are the best methods for scraping data from dynamically-loaded websites? in the forum General Web Scraping 4 months ago
What are the best methods for scraping data from dynamically-loaded websites?
I also use Playwright for dynamic sites because it’s faster and more reliable than Selenium in some cases. It handles multi-page navigation seamlessly and supports both headless and headed modes.
-
Aridai Farzona replied to the discussion How does Python’s Flask compare to Django for web app development? in the forum General Web Scraping 4 months ago
How does Python’s Flask compare to Django for web app development?
If your app requires flexibility and you don’t want the overhead of a large framework, Flask is the way to go; otherwise, Django can save time with pre-built components.
-
Aridai Farzona started the discussion How can I scrape for product reviews and ratings on e-commerce sites? in the forum General Web Scraping 4 months ago
How can I scrape for product reviews and ratings on e-commerce sites?
Many e-commerce sites load reviews through AJAX or API calls. I inspect the network requests to pull review data directly from these sources.
-
Aridai Farzona changed their photo 4 months ago
-
Aridai Farzona became a registered member 4 months ago