mihaeu/tarantula
Composer 安装命令:
composer require mihaeu/tarantula
包简介
Another PHP crawler based on Guzzle.
README 文档
README
Tarantula is a web crawler written in PHP. It utilizes the amazing work of the people behind Guzzle and Symfony's DomCrawler.
Installation
Global tool
Make sure ~/.composer/bin is in your $PATH and then simply execute:
composer global require mihaeu/tarantula:1.*
Library
Assuming you are using Composer, add the following to your composer.json file:
{
"require": {
"mihaeu/tarantula": "1.*"
}
}
or use Composer's cli tool composer require mihaeu/tarantula:1.*.
Usage
Global tool
Right now the only command available is crawl. Some usage examples would be:
# most basic use case tarantula crawl "http://google.com" # go deeper tarantula crawl "http://products.com/categories" --depth=4 # mirror tarantula crawl "http://myblog.com" --mirror=/tmp/blog-backup # filters tarantula crawl "http://myblog.com" --contains=yolo tarantula crawl "http://myblog.com" --regex="(post)\|(\d+)" # dump crawled file in hashed files tarantula crawl "http://myblog.com" --save-hashed=/tmp/blog-backup --minify-html # HTTP basic auth tarantula crawl "http://secure.com" --user=admin --password=admin # search for "Avatar" on imdb bin/tarantula crawl "http://www.imdb.com/find?q=avatar&s=all" --depth=0 --quiet --css=".findSection td.result_text" # today's weather in seattle bin/tarantula crawl --depth=0 "http://www.weather.com/weather/today/Seattle+WA+USWA0395:1:US" --css=".wx-first" | head -n 2
For all arguments and options use the help command:
tarantula help # displays all available commands tarantula help crawl # all arguments and options for the crawler tarantula crawl "..." --verbose # switch on debugging output
Library
Have a look at the tests to see what's possible or just try the following in your code:
use Mihaeu\Tarantula\Crawler; use Mihaeu\Tarantula\HttpClient; $crawler = new Crawler(new HttpClient('http://google.com')); $links = $crawler->go(1);
All HTTP requests go through Guzzle and you can add any configuration for Guzzle's request object also to Tarantula's HttpClient.
Tests
Test coverage is not at 100%, the reason being that this was an afternoon project and testing a crawler takes a lot of time due to the testing setup.
If you want to get a quick overview of the project, I recommend running the test suite with the --testdox flag:
vendor/bin/phpunit --testdox
To Do
- filters (url, filetype, etc.)
- allow for Guzzle to be configured via command line
- more actions (save plain result, crawl via DOM/XPath, ...)
Troubleshooting
Composer global install fails
This is most likely due to a conflict with some requirements of other global installs. Unfortunately Composer's architecture doesn't offer a solution for this yet. I tried to keep the requirements Tarantula loose to avoid this problem.
If you want to have Tarantula available throughout your system, just install to another directory (e.g. using composer create-project) and symlink bin/tarantula into a folder in your $PATH.
Thanks to
- Symfony/SensioLabs and especially Fabien Potencier for what he does for PHP (for this particular project the DomCrawler)
- the Guzzle team for their awesome HTTP client
- Aha Soft for the logo
- the Composer team for revolutionizing the way I and many others write PHP
- GitHub for redefining collaboration
- Travis CI for improving the quality and compatibility of thousands of open source projects
- Sebastian Bergmann for PHPUnit and many other awesome QA tools
License
MIT, see LICENSE file.
mihaeu/tarantula 适用场景与选型建议
mihaeu/tarantula 是一款 基于 HTML 开发的 Composer 扩展包,目前已累计 50 次下载、GitHub Stars 达 14, 最近一次更新时间为 2014 年 06 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「spider」 「crawler」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mihaeu/tarantula 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mihaeu/tarantula 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mihaeu/tarantula 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A lightweight, dependency free PHP class that acts as wrapper for Crawlbase API
Sitemap crawler/generator. For the given URL it will return sitemap XML file with URLs and images.
A new generation of multi-process async event-driven spider engine based on Workerman
X-Robots-Tag HTTP header parser class
parser/handler for Robots Exclusion Protocol (robots.txt and more)
统计信息
- 总下载量: 50
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 15
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-06-27