Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/ruby
- require 'open-uri'
- require 'nokogiri'
- doc = Nokogiri::HTML(open("http://www.betfair.com/exchange/football/competition?id=59"))
- doc.css('.description').each do |link|
- puts link[href]
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement