Class: EplCliGem::Scraper

Inherits:
Object
  • Object
show all
Defined in:
lib/epl_cli_gem/scraper.rb

Instance Method Summary collapse

Instance Method Details

#get_pageObject



3
4
5
# File 'lib/epl_cli_gem/scraper.rb', line 3

def get_page
  Nokogiri::HTML(open("https://www.premierleague.com/tables"))
end

#scrape_tableObject



7
8
9
# File 'lib/epl_cli_gem/scraper.rb', line 7

def scrape_table
  self.get_page.css("tbody.tableBodyContainer tr[data-compseason='54']")
end