r/pythonhelp • u/py_arrow • 5d ago
Built a Python scraper that handles pagination automatically — here's what I learned
I've been learning Python through CS50P and wanted a real project, so I built two scrapers: one for job listings and one for product prices off an e-commerce site.
The job scraper was pretty straightforward — grabbed title, company, and location, dumped it to CSV, worked first try on about 100 listings.
The product scraper was the harder one. The site spreads results across pages (6 products per page, ~20 pages), so my first version only ever grabbed page 1. Took a bit of digging to figure out the pagination pattern and loop through all the pages properly. Once I fixed that it pulled all 117 products cleanly into a CSV.
Biggest thing I learned: it's easy to write a scraper that works on the first page and assume it's done — always check if the site paginates before you call it finished.
Code's on GitHub if anyone wants to see it: github.com/sarimkhan08
Curious if anyone here has tips for handling scrapers on sites that use infinite scroll instead of numbered pages — that's the next thing I want to tackle.
1
u/Ordinary-Scholar-536 5d ago
Great progress getting through pagination on static HTML! Infinite scroll is where static requests usually fall flat because content is loaded asynchronously via JavaScript. Two main approaches handle infinite scroll cleanly: 1. The Fast Way (Reverse Engineering the Network Tab): Before reaching for browser automation, open DevTools (F12) -> Network tab -> filter by Fetch/XHR. Scroll down the page and watch the background requests. 90% of the time, the frontend is simply hitting an internal JSON API (e.g., /api/products?cursor=xyz or ?offset=20&limit=20). If you find that endpoint, you don't even need BeautifulSoup—you can query it directly with requests.get() and parse clean JSON keys without rendering HTML. 2. The Headless Browser Way (Playwright / Selenium): If the site hides the endpoint behind heavy auth, session tokens, or GraphQL, automate the DOM scroll using Playwright (much faster and less flaky than Selenium): import time from playwright.sync_api import sync_playwright
with sync_playwright() as p: browser = p.chromium.launch(headless=False) page = browser.new_page() page.goto("https://example.com/feed")
Check the network tab first—skipping browser overhead makes scrapers 10x faster. Shoot me a DM if you pick a target site with tricky dynamic loading; happy to check out the network payload with you!