Advertisement
Guest User

Untitled

a guest
Mar 15th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.21 KB | None | 0 0
  1. #!/usr/bin/ruby
  2.  
  3. require 'open-uri'
  4. require 'nokogiri'
  5.  
  6. doc = Nokogiri::HTML(open("http://www.betfair.com/exchange/football/competition?id=59"))
  7. doc.css('.description').each do |link|
  8.     puts link[href]
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement