What’s the best way to start crawling with Python for web scraping? or How can I improve my crawling

14 Replies, 1736 Views

If you’re just starting with crawling with python, don’t overcomplicate it. BeautifulSoup + requests is fine for most things.

But for dynamic sites, Selenium is the go-to, even if it’s slow. For speed, try `httpx` with `asyncio`—it’s like requests but async.

And yeah, getting blocked… rotate headers, use proxies, and maybe even mimic human behavior (random delays, mouse movements if using Selenium).

Messages In This Thread



Users browsing this thread: 1 Guest(s)