All Projects → elboletaire → php-crawler

elboletaire / php-crawler

Licence: other
🕷️ A simple crawler (spider) writen in php just for fun, with zero dependencies

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to php-crawler

simpyder
超高速异步协程Python爬虫
Stars: ✭ 74 (+89.74%)
Mutual labels:  spider
GitHub-Trending-Crawler
Crawling GitHub Trending Pages every day
Stars: ✭ 55 (+41.03%)
Mutual labels:  spider
grapy
Grapy, a fast high-level web crawling framework for Python 3.3 or later base on asyncio.
Stars: ✭ 18 (-53.85%)
Mutual labels:  spider
BaiduSpider
项目已经移动至:https://github.com/BaiduSpider/BaiduSpider !! 一个爬取百度搜索结果的爬虫,目前支持百度网页搜索,百度图片搜索,百度知道搜索,百度视频搜索,百度资讯搜索,百度文库搜索,百度经验搜索和百度百科搜索。
Stars: ✭ 29 (-25.64%)
Mutual labels:  spider
bilibili-smallvideo
🕷️用于爬取B站前top100的小视频
Stars: ✭ 133 (+241.03%)
Mutual labels:  spider
main project
基于nodejs的网络聊天室、爬虫,vue音乐播放器,及php后台开发的管理系统等项目
Stars: ✭ 49 (+25.64%)
Mutual labels:  spider
weaver
A spider tapestry weaver
Stars: ✭ 72 (+84.62%)
Mutual labels:  spider
article-spider
文章采集工具 Article collection tool
Stars: ✭ 130 (+233.33%)
Mutual labels:  spider
scrapy helper
Dynamic configurable crawl (动态可配置化爬虫)
Stars: ✭ 84 (+115.38%)
Mutual labels:  spider
weixin article spiders
A spiders' program for weixin which made by Express & cheerio
Stars: ✭ 33 (-15.38%)
Mutual labels:  spider
ben-ben-spider
犇犇爬虫
Stars: ✭ 36 (-7.69%)
Mutual labels:  spider
spider
裁判文书网爬虫
Stars: ✭ 19 (-51.28%)
Mutual labels:  spider
gospider
⚡ Light weight Golang spider framework | 轻量的 Golang 爬虫框架
Stars: ✭ 183 (+369.23%)
Mutual labels:  spider
young-crawler
scala结合actor编写的分布式网络爬虫
Stars: ✭ 15 (-61.54%)
Mutual labels:  spider
TaobaoSpider
This taobao spider has been archived
Stars: ✭ 28 (-28.21%)
Mutual labels:  spider
imdb-spider
scrapy spider for scraping imdb {movie_id: [recommended, ...]}
Stars: ✭ 23 (-41.03%)
Mutual labels:  spider
Web-Iota
Iota is a web scraper which can find all of the images and links/suburls on a webpage
Stars: ✭ 60 (+53.85%)
Mutual labels:  spider
gathertool
gathertool是golang脚本化开发库,目的是提高对应场景程序开发的效率;轻量级爬虫库,接口测试&压力测试库,DB操作库等。
Stars: ✭ 36 (-7.69%)
Mutual labels:  spider
ZSpider
基于Electron爬虫程序
Stars: ✭ 37 (-5.13%)
Mutual labels:  spider
crawler-chrome-extensions
爬虫工程师常用的 Chrome 插件 | Chrome extensions used by crawler developer
Stars: ✭ 53 (+35.9%)
Mutual labels:  spider

About

A simple crawler (spider) writen in PHP.

Installation

composer require elboletaire/crawler:dev-master

Usage

<?php
// require 'vendor/autoload.php';

use Elboletaire\Crawler\Crawler;

try {
	$crawler = new Crawler('http://www.underave.net', 3, true);
	print_r($crawler->crawl());
} catch (Exception $e) {
	die($e->getMessage());
}

License

Author: Òscar Casajuana

http://www.gnu.org/copyleft/gpl.html

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].