Sha256: bf7382127910ca52ecac8ac20f087ad9651f3f3b562c297a3a45e0ecac02f877

Contents?: true

Size: 1.02 KB

Versions: 19

Compression:

Stored size: 1.02 KB

Contents

# HttpCrawler

Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/http_crawler`. To experiment with that code, run `bin/console` for an interactive prompt.

TODO: Delete this and the text above, and describe your gem

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'http_crawler'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install http_crawler


## 示例:百度爬虫维护


### 通过对象调用

```ruby
client = HttpCrawler::Client::Baidu::Client.new
client.index  # 抓取首页
```

### 通过别名调用
```ruby
client = HttpCrawler::Client.for("baidu") # 
client.index   # 抓取首页
```


## 示例:测试API


### 通过对象调用

```ruby
client = HttpCrawler::Proxy::TestProxyApi::Client.new
client.index  # 抓取首页
```

### 通过别名调用
```ruby
client = HttpCrawler::Proxy.for("test_proxy_api") # 
client.index   # 抓取首页
```

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
http_crawler-0.3.0.3 README.md
http_crawler-0.3.0.2 README.md
http_crawler-0.3.0.1 README.md
http_crawler-0.3.0.0 README.md
http_crawler-0.2.3.3 README.md
http_crawler-0.2.3.2 README.md
http_crawler-0.2.3.1 README.md
http_crawler-0.2.3.0 README.md
http_crawler-0.2.2.9 README.md
http_crawler-0.2.2.8 README.md
http_crawler-0.2.2.7 README.md
http_crawler-0.2.2.6 README.md
http_crawler-0.2.2.5 README.md
http_crawler-0.2.2.4 README.md
http_crawler-0.2.2.3 README.md
http_crawler-0.2.2.1 README.md
http_crawler-0.2.2 README.md
http_crawler-0.2.1 README.md
http_crawler-0.2.0 README.md