Last active
December 13, 2016 23:57
-
-
Save daguar/268aea5793a09b5e5ec8351b9ad32bed to your computer and use it in GitHub Desktop.
This file contains 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
require 'httparty' | |
require 'nokogiri' | |
require 'pry' | |
page = HTTParty.get("http://lafayette.granicus.com/ViewPublisher.php?view_id=3").body | |
parsed_page = Nokogiri::HTML(page) | |
all_agenda_link_elements = parsed_page.css("a").select { |link| link.children.text == "Agenda" } | |
first_agenda = HTTParty.get all_agenda_link_elements[1].attributes["href"].value | |
binding.pry |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment