ajbdev/scraper

Scrape websites and extract specific information in various format (HTML, JSON, etc) from different sources

dev-master 2015-01-26 04:35 UTC

This package is not auto-updated.

Last update: 2024-04-27 14:28:06 UTC


README

Quickly and easily scrape data from external sources with simple query strings.

use Scraper\Scraper;
use Scraper\Source\Source;

$scraper = new Scraper();

$source = Source::create('https://news.ycombinator.com');
$source->setFakeIdentity(true);

$result = $scraper->scrape($source, 'td.title a');

foreach ($result as $node) {
    echo $node->nodeValue . PHP_EOL;
}

// IBM to cut 111,800 people from its workforce
// Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
// First U.S. Bitcoin Exchange Set to Open
// ...