Skip to content

Instantly share code, notes, and snippets.

Created August 6, 2012 08:44
Show Gist options
  • Save anonymous/3272326 to your computer and use it in GitHub Desktop.
Save anonymous/3272326 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'crack'
require 'open-uri'
URL = 'http://www.recovery.gov/pages/GetXmlData.aspx?data=recipientHomeMap'
Crack::XML.parse(open(URL).read)['totals']['state'].each do |state|
puts ['id', 'awarded', 'received', 'jobs'].map{|f| state[f]}.join(', ')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment