screen-scraping   79

« earlier    

Easy Screen Scraping in PHP with the Simple HTML DOM Library
scraping without messy regular expressions.The Simple HTML DOM Parser is implemented as a simple PHP class and a few helper functions. It supports CSS selector style screen scraping (such as in jQuery), can handle invalid HTML, and even provides a familiar interface to manipulate a DOM.
Here’s a sample of simplehtmldom in action:
Code:
$html = file_get_dom('http://www.google.com/'); foreach($html->find('a') as $element) echo $element->href;
HTML  DOM  screen-scraping  PHP 
8 weeks ago by eosuchian
Home | screen-scraper
screen-scraper is a tool for extracting data from websites.
scraping  screen-scraping  scraper  datamining  bi  software  extraer  datos  descargas  download 
september 2011 by pacoalcaide
mechanize
Stateful programmatic web browsing in Python, after Andy Lester’s Perl module.
python  library  web  programming  mechanize  screen-scraping 
january 2011 by amoore

« earlier    

Copy this bookmark:



description:


tags: