Skip to content

Instantly share code, notes, and snippets.

@jehrhardt
Last active February 26, 2019 09:38
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save jehrhardt/d38cf18906ba2348a0ee to your computer and use it in GitHub Desktop.
Save jehrhardt/d38cf18906ba2348a0ee to your computer and use it in GitHub Desktop.
Get suggestions from Google's completion API like http://ubersuggest.org
# Copyright © 2014 Jan Ehrhardt
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
## Description
#
# This script does the same as http://ubersuggest.org.
#
## Usage
#
# Run this script with a search query as argument
#
# `ruby google-suggestions.rb queries.txt`
#
# You will get a list of suggestions from Google's completion API. You can
# simply write them to a file
#
# `ruby google-suggestions.rb queries.txt > suggestions.txt`
require 'open-uri'
require 'json'
querries_file = ARGV[0]
suggestion_extensions = [' ', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u',
'v', 'w', 'x', 'y', 'z']
def google_complete(query)
url = "http://suggestqueries.google.com/complete/search?output=firefox&hl=de&q=#{URI::encode(query)}"
open(url).read
end
def print_suggestions(json)
suggestions = JSON.parse(json)[1]
suggestions.each { |elem| puts elem }
end
File.readlines(querries_file).each { |line|
suggestion_extensions.collect { |extension|
"#{line} #{extension}"
}.each { |query|
json = google_complete(query)
print_suggestions(json)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment