forked from satelin2002/hawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
49 lines (38 loc) · 1.17 KB
/
README
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# $Id: README 16 2008-03-23 06:02:07Z warchild $
Hawler, the ruby HTTP crawler.
Written to ease satisfying curiousities about the way the web is woven.
Install by:
gem install --source http://spoofed.org/files/hawler/ hawler
Rough usage is... define a method that will take a URI, a referer, and an
Net::HTTPResponse as arguments, and then does whatever it wants. Create
a Hawler object, passing the start URI and the above method as arguments.
Set Hawler options, then start it.
Basic usage is an implementation of htgrep:
#!/usr/bin/ruby
require 'rubygems'
require 'hawler'
require 'hawleroptions'
def grep (uri, referer, response)
line = 0
unless (response.nil?)
response.body.each do |l|
line += 1
if (l =~ /#{@match}/)
puts "#{uri}:#{line} #{l}"
end
end
end
end
options = HawlerOptions.parse(ARGV, "Usage: #{File.basename $0} [pattern] [uri] [options]")
if (ARGV.empty?)
puts @options.help
else
@match = ARGV.shift
ARGV.each do |site|
crawler = Hawler.new(site, method(:grep))
options.each_pair do |o,v|
crawler.send("#{o}=",v)
end
crawler.start
end
end