mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
db9445103c
* lib/wsdl/* (42 files): WSDL4R added. * lib/xsd/* (12 files): XSD4R added. * test/soap/* (16 files): added. * test/wsdl/* (2 files): added. * test/xsd/* (3 files): added. * sample/soap/* (27 files): added. * sample/wsdl/* (13 files): added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
23 lines
671 B
Ruby
23 lines
671 B
Ruby
#require 'uconv'
|
|
require 'soap/wsdlDriver'
|
|
|
|
word = ARGV.shift
|
|
# You must get key from http://www.google.com/apis/ to use Google Web APIs.
|
|
key = File.open(File.expand_path("~/.google_key")).read.chomp
|
|
|
|
GOOGLE_WSDL = 'http://api.google.com/GoogleSearch.wsdl'
|
|
# GOOGLE_WSDL = 'GoogleSearch.wsdl'
|
|
|
|
def html2rd(str)
|
|
str.gsub(%r(<b>(.*?)</b>), '((*\\1*))').strip
|
|
end
|
|
|
|
|
|
google = SOAP::WSDLDriverFactory.new(GOOGLE_WSDL).create_driver
|
|
#google.wiredump_dev = STDERR
|
|
result = google.doGoogleSearch( key, word, 0, 10, false, "", false, "", 'utf-8', 'utf-8' )
|
|
result.resultElements.each do |ele|
|
|
puts "== #{html2rd(ele.title)}: #{ele.URL}"
|
|
puts html2rd(ele.snippet)
|
|
puts
|
|
end
|