You'll want to prioritize documenting the existing features, since it's no good having a super awesome full stack web scraping platform if only you can use it. I ordinarily would default to a "read the source" response but your cutesy coding style makes that a non-starter As a concrete example: command-f for "tier" on https://crawlee.dev/python/docs/guides/proxy-management and tell me how anyone could possibly know w…
Sorry about the confusion. Some features, like the tiered proxies, are not documented properly. You’re absolutely right. Updates will come soon. We wanted to have as many features in the initial release as possible, because we have a local Python community conference coming up tomorrow and we wanted to have the library ready for that. More docs will come soon. I promise. And thanks for the shout.
Show HN: Crawlee for Python – a web scraping and browser automation library
41–50 of 60 posts
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#42in one sentence, what does this do that existing web scraping and browser automation doesn't do?
But I personally think it does some things a little easier, a little faster and little more conveniently than the other libraries and tools out there.
Although there’s one thing that the JS version of Crawlee has which unfortunately isn’t in Python yet, but it will be there soon. AFAIK it’s unique among all libraries. It’s automatically detecting whether a headless browser is needed or if HTTP will suffice and using the most performant option.
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#43Nice work though.
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#44Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#45in one sentence, what does this do that existing web scraping and browser automation doesn't do?
In one word. Nothing. But I personally think it does some things a little easier, a little faster and little more conveniently than the other libraries and tools out there. Although there’s one thing that the JS version of Crawlee has which unfortunately isn’t in Python yet, but it will be there soon. AFAIK it’s unique among all libraries. It’s automatically detecting whether a headless browser is needed or if HTTP w…
I find some dynamic sites purposefully make it extremely difficult to parse and they obfuscate the XHR calls to their API
I've also seen some websites pollute the data when it detects scraping which results in garbage data but you don't know until its verified
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#46Earlier quoted context omitted.
Ah yes, the old 'if I don't build the bombs for them, someone else will'. I don't think this is taking the moral high ground, this is saying we don't care whether it's moral, there's demand and we'll build it.
Google and Amazon where built on scrapped data, who are you kidding?
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#47Earlier quoted context omitted.
Ah yes, the old 'if I don't build the bombs for them, someone else will'. I don't think this is taking the moral high ground, this is saying we don't care whether it's moral, there's demand and we'll build it.
Google and Amazon where built on scrapped data, who are you kidding?
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#48Earlier quoted context omitted.
In one word. Nothing. But I personally think it does some things a little easier, a little faster and little more conveniently than the other libraries and tools out there. Although there’s one thing that the JS version of Crawlee has which unfortunately isn’t in Python yet, but it will be there soon. AFAIK it’s unique among all libraries. It’s automatically detecting whether a headless browser is needed or if HTTP w…
is there anything that uses a computer vision model/ocr locally to extract data? I find some dynamic sites purposefully make it extremely difficult to parse and they obfuscate the XHR calls to their API I've also seen some websites pollute the data when it detects scraping which results in garbage data but you don't know until its verified
Data pollution is real. Also location specific results, personalized results, A/B testing, and my favorite, badly implemented websites are real as well.
When you encounter this, you can try scraping the data from different locations, with various tokens, cookies, referrers etc. and often you can find a pattern to make the data consistent. Websites hate scraping, but they hate showing wrong data to human users even more. So if you resemble a legit user, you’ll most likely get correct data. But of course, there are exceptions.
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#49Can this work on intranet sites like sharepoint or confluence , which require employee SSO ? I was trying to build a small Langchain based RAG based on internal documents but getting the documents from sharepoint/confluence (we have both) is very painful.
Re: Show HN: Crawlee for Python – a web scraping and browser automation library
#50Can you use this to auto-logon to systems?