Nice lib, you may take some ideas from pismo: https://github.com/peterc/pismo , more metadata oriented but returns a nokogiri doc as well.
Upton: A Web Scraping Framework
61–65 of 65 posts
Re: Upton: A Web Scraping Framework
#62Instead of (or in addition to) manually creating scrapers, you can use Diffbot to automatically extract this type of information from news articles using computer vision: http://diffbot.com/products/automatic/article . It also allows you to create rules with a WYSIWYG editor: http://diffbot.com/products/custom/
The project was paused but I'm thinking about restarting it, and I was thinking if something like diffbot or import.io could be useful for me.. any experience doing these kind of stuff?
Re: Upton: A Web Scraping Framework
#63What I need is something that can scrape .NET sites with lots of weird and signed AJAX stuff just to populate a select control. I'm using node.js with several libraries and nothing has worked so far.
Re: Upton: A Web Scraping Framework
#64Looks like a very nice integrated solution for data scientists and researchers. It's interesting to see the different shapes tools like this take, depending on their target users. I've been happy with node.js + cheerio[1] and it's simplistic jquery-like API: request 'http://website.com/list_of_stories.html', (err, body) -> $ = cheerio.load(body) callback $('#comments li a.commenter-name').map(cheerio::text) Plus if y…
https://github.com/mikeal/request https://github.com/sgentle/phantomjs-node
Re: Upton: A Web Scraping Framework
#65What I need is something that can scrape .NET sites with lots of weird and signed AJAX stuff just to populate a select control. I'm using node.js with several libraries and nothing has worked so far.
You might want to look at one of the headless web browsers, like phantom or casper, http://phantomjs.org/ http://casperjs.org/
Some JS in the page makes webkit die.
I think a headless Firefox is my only hope.