Skip to content

Instantly share code, notes, and snippets.

@emilyxxie
Created October 4, 2013 19:19
Show Gist options
  • Save emilyxxie/d4d96992fad936e88253 to your computer and use it in GitHub Desktop.
Save emilyxxie/d4d96992fad936e88253 to your computer and use it in GitHub Desktop.
student_scrape
require 'nokogiri'
require 'open-uri'
student_profile = Nokogiri::HTML(open('http://students.flatironschool.com/students/emily_xie.html'))
student_profile.css('div.social-icons a').collect do |link|
link['href']
end
doc.css('div.heat a').map { |link| link['href'] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment