Skip to content

Instantly share code, notes, and snippets.

@gildo
Created October 19, 2010 10:53
Show Gist options
  • Save gildo/634010 to your computer and use it in GitHub Desktop.
Save gildo/634010 to your computer and use it in GitHub Desktop.
require'mechanize';require'rss/2.0';a=Mechanize.new;p=a.get('http://italiansubs.net/')
f=p.form_with(:name=>'login');f.username=ARGV[0];f.passwd=ARGV[1]
p=a.submit(f);p=a.click p.link_with(:text=>"MY ITASA")
p=p.link_with(:href=>/favsub/).click;r=RSS::Parser.parse(p.body,false)
r.items.each_with_index{|l|puts"#{l.title} #{l.link}"}
@gildo
Copy link
Author

gildo commented Oct 23, 2010

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment