Ask HN: What are best tools for web scraping?
31–40 of 243 posts
Re: Ask HN: What are best tools for web scraping?
#32Re: Ask HN: What are best tools for web scraping?
#33Re: Ask HN: What are best tools for web scraping?
#34[0] http://go-colly.org/ [1] https://github.com/gocolly/colly
Re: Ask HN: What are best tools for web scraping?
#35Re: Ask HN: What are best tools for web scraping?
#36If you are a programmer, scrapy[0] will be a good bet. It can handle robots.txt, request throttling by ip, request throttling by domain, proxies and all other common nitty-gritties of crawling. The only drawback is handling pure javascript sites. We have to manually dig into the api or add a headless browser invocation within the scrapy handler. Scrapy also has the ability to pause and restart crawls [1], run the cra…
Re: Ask HN: What are best tools for web scraping?
#37beautifulsoup
Using this as well with Requests to automate eBay/gumtree/craigslist. Works very well
Re: Ask HN: What are best tools for web scraping?
#38I use R since that is the language I use mostly httr and rvest. Edit I missed typing rvest thanks for the comments you use the two together. https://cran.r-project.org/web/packages/httr/vignettes/quick...
Re: Ask HN: What are best tools for web scraping?
#39I've actually wrote about this! General tips that I've found from doing more than a few projects [0], and then an overview of Python libraries I use [1]. If you don't want to clock on the links, requests and BeautifulSoup / lxml is all you need 90% of the time. Throw gevent in there and you can get a lot of scraping done in not as much time as you think it would take. And as long as we're talking about web scraping,…
When should one use one or the other, would you say?