Skip to content

Instantly share code, notes, and snippets.

@JakeAustwick
Created November 15, 2011 00:24
Show Gist options
  • Save JakeAustwick/1365681 to your computer and use it in GitHub Desktop.
Save JakeAustwick/1365681 to your computer and use it in GitHub Desktop.
require 'gscraper'
q = GScraper::Search.query( :query => 'github') do |q|
end
page = q.page(1)
page.each_url do |url|
puts url
end
Output:
https://github.com/
https://github.com/
https://github.com/
https://github.com/
https://github.com/
https://github.com/
https://github.com/
https://github.com/
https://github.com/
https://github.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment