ramphor / rake
The spider/crawler framework written in PHP
1.0.1
2022-12-30 05:28 UTC
Requires
- php: >=7.1
- guzzlehttp/psr7: ^1.6
- php-http/httplug: ^2.1
- psr/log: ^1.0.1
- ramphor/httplug-guzzle6-adapter: ^2.0.2
- ramphor/php-html-parser: 3.0.1
- ramphor/sql: 1.0.0
This package is auto-updated.
Last update: 2024-11-14 02:43:11 UTC
README
The spider/crawler framework written in PHP
Example code
$rake = new Rake( 'rake_id', new Your_DB_Driver(), new Your_HTTP_Client() );
$tooth = new Your_Tooth_Class( 'cp_products', $rake );
$feed = new Sitemap( 'feed_id' );
$feed->setUrl('https://site_map_url.com');
$feed->setTooth( $tooth );
$tooth->registerProcessor( new Your_Processor() );
$tooth->setFormat( Tooth::FORMAT_HTML );
$tooth->addFeed( $feed );
$rake->addTooth( $tooth );
$rake->execute();