-
-
Save christopherdebeer/2196679 to your computer and use it in GitHub Desktop.
Download all tweets from the twitter search API for a given search term (limited to their maximum of 1500)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
search_term = ARGV[0] | |
if search_term | |
time = Time.now | |
directory_path = File.dirname(__FILE__) + "/tweets/" + search_term + "_" + time.to_i.to_s | |
Dir.mkdir_p(directory_path) | |
directory = Dir.new(directory_path) | |
(1..15).each do |i| | |
`curl "http://search.twitter.com/search.json?q=#{search_term}&rpp=100&page=#{i}&include_entities=true&result_type=mixed" > #{directory.path}/#{i}.json` | |
end | |
puts "Scraped to #{directory_path}" | |
else | |
puts "./scrape_tweets.rb <your search term in quotes>" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll need to change Dir.mkdir_p to FileUtils.mkdir_p and require "fileutils" at the top...