Skip to content

Instantly share code, notes, and snippets.

@r00k
Created May 19, 2009 20:59
Show Gist options
  • Save r00k/114401 to your computer and use it in GitHub Desktop.
Save r00k/114401 to your computer and use it in GitHub Desktop.
class DownloadTrials
require 'rubygems'
def self.download_trials
agent = WWW::Mechanize.new
file = agent.get("http://clinicaltrials.gov/search?term=%22banana%22&studyxml=true")
file.save_as(File.dirname(__FILE__) + '/../tmp/trials.zip')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment