You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webmagic/README.md

182 lines
5.4 KiB
Markdown

11 years ago
![logo](https://raw.github.com/code4craft/webmagic/master/assets/logo.jpg)
11 years ago
9 years ago
[Readme in Chinese](https://github.com/code4craft/webmagic/tree/master/README-zh.md)
12 years ago
[User Manual (Chinese)](https://github.com/code4craft/webmagic/blob/master/user-manual.md)
12 years ago
[![Build Status](https://travis-ci.org/code4craft/webmagic.png?branch=master)](https://travis-ci.org/code4craft/webmagic)
12 years ago
>A scalable crawler framework. It covers the whole lifecycle of crawler: downloading, url management, content extraction and persistent. It can simplify the development of a specific crawler.
12 years ago
## Features:
12 years ago
* Simple core with high flexibility.
* Simple API for html extracting.
* Annotation with POJO to customize a crawler, no configuration.
* Multi-thread and Distribution support.
* Easy to be integrated.
12 years ago
## Install:
Add dependencies to your pom.xml:
12 years ago
```xml
11 years ago
<dependency>
<groupId>us.codecraft</groupId>
<artifactId>webmagic-core</artifactId>
<version>0.5.3</version>
11 years ago
</dependency>
<dependency>
<groupId>us.codecraft</groupId>
<artifactId>webmagic-extension</artifactId>
<version>0.5.3</version>
11 years ago
</dependency>
```
WebMagic use slf4j with slf4j-log4j12 implementation. If you customized your slf4j implementation, please exclude slf4j-log4j12.
```xml
11 years ago
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
```
12 years ago
## Get Started:
12 years ago
### First crawler:
12 years ago
Write a class implements PageProcessor. For example, I wrote a crawler of github repository infomation.
12 years ago
12 years ago
```java
public class GithubRepoPageProcessor implements PageProcessor {
12 years ago
private Site site = Site.me().setRetryTimes(3).setSleepTime(1000);
12 years ago
11 years ago
@Override
public void process(Page page) {
page.addTargetRequests(page.getHtml().links().regex("(https://github\\.com/\\w+/\\w+)").all());
page.putField("author", page.getUrl().regex("https://github\\.com/(\\w+)/.*").toString());
page.putField("name", page.getHtml().xpath("//h1[@class='entry-title public']/strong/a/text()").toString());
if (page.getResultItems().get("name")==null){
//skip this page
page.setSkip(true);
}
page.putField("readme", page.getHtml().xpath("//div[@id='readme']/tidyText()"));
11 years ago
}
12 years ago
11 years ago
@Override
public Site getSite() {
return site;
}
12 years ago
11 years ago
public static void main(String[] args) {
Spider.create(new GithubRepoPageProcessor()).addUrl("https://github.com/code4craft").thread(5).run();
12 years ago
}
11 years ago
}
12 years ago
```
12 years ago
* `page.addTargetRequests(links)`
Add urls for crawling.
You can also use annotation way:
12 years ago
12 years ago
```java
@TargetUrl("https://github.com/\\w+/\\w+")
@HelpUrl("https://github.com/\\w+")
public class GithubRepo {
12 years ago
@ExtractBy(value = "//h1[@class='entry-title public']/strong/a/text()", notNull = true)
private String name;
12 years ago
@ExtractByUrl("https://github\\.com/(\\w+)/.*")
private String author;
12 years ago
@ExtractBy("//div[@id='readme']/tidyText()")
private String readme;
12 years ago
11 years ago
public static void main(String[] args) {
OOSpider.create(Site.me().setSleepTime(1000)
, new ConsolePageModelPipeline(), GithubRepo.class)
.addUrl("https://github.com/code4craft").thread(5).run();
11 years ago
}
}
12 years ago
```
### Docs and samples:
12 years ago
11 years ago
Documents: [http://webmagic.io/docs/](http://webmagic.io/docs/)
The architecture of webmagic (refered to [Scrapy](http://scrapy.org/))
![image](http://code4craft.github.io/images/posts/webmagic.png)
12 years ago
Javadocs: [http://code4craft.github.io/webmagic/docs/en/](http://code4craft.github.io/webmagic/docs/en/)
There are some samples in `webmagic-samples` package.
### Lisence:
12 years ago
Lisenced under [Apache 2.0 lisence](http://opensource.org/licenses/Apache-2.0)
### Contributors:
Thanks these people for commiting source code, reporting bugs or suggesting for new feature:
11 years ago
* [ccliangbo](https://github.com/ccliangbo)
* [yuany](https://github.com/yuany)
* [yxssfxwzy](https://github.com/yxssfxwzy)
* [linkerlin](https://github.com/linkerlin)
* [d0ngw](https://github.com/d0ngw)
* [xuchaoo](https://github.com/xuchaoo)
* [supermicah](https://github.com/supermicah)
* [SimpleExpress](https://github.com/SimpleExpress)
* [aruanruan](https://github.com/aruanruan)
* [l1z2g9](https://github.com/l1z2g9)
* [zhegexiaohuozi](https://github.com/zhegexiaohuozi)
* [ywooer](https://github.com/ywooer)
* [yyw258520](https://github.com/yyw258520)
* [perfecking](https://github.com/perfecking)
* [lidongyang](http://my.oschina.net/lidongyang)
11 years ago
* [seveniu](https://github.com/seveniu)
* [sebastian1118](https://github.com/sebastian1118)
11 years ago
* [codev777](https://github.com/codev777)
11 years ago
* [fengwuze](https://github.com/fengwuze)
### Thanks:
To write webmagic, I refered to the projects below :
* **Scrapy**
A crawler framework in Python.
[http://scrapy.org/](http://scrapy.org/)
* **Spiderman**
12 years ago
Another crawler framework in Java.
[http://git.oschina.net/l-weiwei/spiderman](http://git.oschina.net/l-weiwei/spiderman)
11 years ago
### Mail-list:
[https://groups.google.com/forum/#!forum/webmagic-java](https://groups.google.com/forum/#!forum/webmagic-java)
[http://list.qq.com/cgi-bin/qf_invite?id=023a01f505246785f77c5a5a9aff4e57ab20fcdde871e988](http://list.qq.com/cgi-bin/qf_invite?id=023a01f505246785f77c5a5a9aff4e57ab20fcdde871e988)
11 years ago
QQ Group: 373225642
8 years ago
### Related Project
8 years ago
* [Gather Platform](https://github.com/gsh199449/spider)
A web console based on WebMagic for Spider configuration and management.