安装 unirest
使用 python 进行数据请求,我们可以使用 opne-uri
,但是进行各种类型的请求时,显得不是特别的方便快捷,所以我们使用unirest
来进行网络数据请求。
1
| gem install unirest // 安装 unirest
|
unirest 的用法
uinirest最低支持 Ruby2.0版本,使用起来十分的简单,常用的方法有下面几个 (具体的使用方法可以看unirest.io)
创建请求
1 2 3 4 5 6 7 8
| response = Unirest.post "http://httpbin.org/post", headers:{ "Accept" => "application/json" }, parameters:{ :age => 23, :foo => "bar" }
response.code response.headers response.body response.raw_body
|
异步请求
1 2 3 4 5 6 7 8
| response = Unirest.post "http://httpbin.org/post", headers:{ "Accept" => "application/json" }, parameters:{ :age => 23, :foo => "bar" } {|response| response.code response.headers response.body response.raw_body }
|
基本 get 请求
1
| response = Unirest.get "http://httpbin.org/get", auth:{:user=>"username", :password=>"password"}
|
安装 nokogiri
当我们爬取到数据后,我们需要对数据进行分析,如果是简单的数据结构我们可以直接使用正则表达式
,如果数据的结构比较复杂,我们就需要使用 nokogiri 对 html 的 dom 进行操作,如果对 dom 结果不了解可以先查看相关的内容(html dom教程)[http://www.runoob.com/htmldom/htmldom-tutorial.html]
nokogiri 使用
导入包
1 2 3
| require 'rubygems' require 'nonogiri'
|
打开一个 html 文档
1 2 3 4 5 6
| page = Nokogiri::HTML(open("index.html)) puts page.class # => Nokogiri::HTML::Document
# 你也可以直接使用 unirest 请求下来的数据 response.body 来进行解析 response = Unirest.get "http://httpbin.org/get" page = Nokogiri::HTML(response.body)
|
通过 open-uri 直接解析 url
通过 http 请求直接获取到 document
1 2 3 4 5 6
| require 'rubygems' require 'nokogiri' require 'open-uri' page = Nokogiri::HTML(open("http://en.wikipedia.org/")) puts page.class
|
CSS 选择器
对 Document 对象进行节点分析
1 2 3 4 5 6
| page.css('title') page.css('li')[0].text page.css('li')[0]['href'] page.css("li[data-category='news']") page.css('div#funstuff')[0] page.css('div#reference a')
|
更多的关于 nokogiri
的信息可以通过Parsing HTML with Nokogiri进行了解
安装 spreadsheet
Spreadsheet是一个Ruby实现的gem,它可以使我们很方便的使用它对excel进行操作,我们需要将获取到的数据存入本地,方便数据的记录和后续处理。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| require "spreadsheet"
Spreadsheet.client_encoding = "UTF-8"
book = Spreadsheet::Workbook.new
sheet1 = book.create_worksheet :name => "Test Excel"
default_format = Spreadsheet::Format.new(:weight => :bold, :size => 14, :horizontal_align: => :merge, :color=>"red", :border=>1, :border_color=>"black", :pattern => 1 , :pattern_fg_color => "yellow" )
test_row = sheet1.row(0) test_row.set_format(i, default_format)
test_row[0] = "row 1 col 1"
test_rwo[1] = "row 1 col 2"
book.write 'book2.xls'
|
爬虫
爬取 RUNOOB.COM(http://www.runoob.com/) 的教程列表和地址数据
其实这都算不上是一个爬虫,但是作为利用 ruby 的各种 gem 来实现异步数据请求,数据筛选及存储。是实现一个更加复杂的爬虫的必备工具。熟练的使用各种各样的 gem 可以体现 ruby 的简洁
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| require 'unirest' require 'nokogiri' require 'open-uri' require 'spreadsheet'
response = Unirest.get "http://www.runoob.com/" page = Nokogiri::HTML(response.body)
datas = page.css('div.codelist') puts datas.count
Spreadsheet.client_encoding = 'UTF-8' book = Spreadsheet::Workbook.new
sheet = book.create_worksheet :name => "my excel"
index = 0 datas.each do |category| puts category.css('h2').text items = category.css('a.item-top') items.each do |item| sheet.row(index)[0] = item.css('h4').text sheet.row(index)[1] = item['href'] index += 1 end end
book.write '/users/ssbun/desktop/runoob.xls'
|
随后你就可以看见在你的桌面上有一个 xls 文件,打开它就能看到里面的数据了。