screen-scraping 79
Easy Screen Scraping in PHP with the Simple HTML DOM Library
8 weeks ago by eosuchian
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
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;
8 weeks ago by eosuchian
Home | screen-scraper
september 2011 by pacoalcaide
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
january 2011 by amoore
Stateful programmatic web browsing in Python, after Andy Lester’s Perl module.
python
library
web
programming
mechanize
screen-scraping
january 2011 by amoore
Copy this bookmark: