Sha256: aeab1d9ed7a298aa23e5f956188787f4a29b155c00fafa5aa9c86c117d8ad254
Contents?: true
Size: 838 Bytes
Versions: 5
Compression:
Stored size: 838 Bytes
Contents
# encoding: ASCII-8BIT #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")) { |f| f.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_rpc_driver google.options["soap.envelope.use_numeric_character_reference"] = true google.wiredump_dev = STDOUT if $DEBUG #google.generate_explicit_type = false result = google.doGoogleSearch( key, word, 0, 10, false, "", false, "", 'utf-8', 'utf-8' ) exit result.resultElements.each do |ele| puts "== #{html2rd(ele.title)}: #{ele["URL"]}" puts html2rd(ele.snippet) puts end
Version data entries
5 entries across 5 versions & 1 rubygems