Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jm3/893897 to your computer and use it in GitHub Desktop.
Save jm3/893897 to your computer and use it in GitHub Desktop.
download all Tweets using ruby
#!/usr/bin/env ruby
require 'twitter'
user = "bongs"
query = /dongs/i
(1..16).each do |page|
Twitter.user_timeline(user, :page => page, :count => 200).each do |tweet|
puts tweet.id.to_s + ": " + tweet.text if query.match(tweet.text)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment