This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 58ff35897784a054e4dc8344db069520c4c01c5e
tree f73b61f85b179f332b7836cbd57fc706d4d97c38
parent 671a2b20ea22ebf8321ac805ea3b8d325ed5184b
tree f73b61f85b179f332b7836cbd57fc706d4d97c38
parent 671a2b20ea22ebf8321ac805ea3b8d325ed5184b
newzbin /
| name | age | message | |
|---|---|---|---|
| |
README | Fri Jun 27 23:23:12 -0700 2008 | |
| |
newzbin.rb | Fri Sep 12 23:30:11 -0700 2008 | |
| |
specs/ | Fri Jun 27 23:04:50 -0700 2008 |
README
####### Newzbin API ### http://v3.newzbin.com ### Created by Jon Maddox on 2007-02-10. open a new newzbin connection, and search it with the method provided. Pass it vars to narrow the search Download the nzb using the provided get_nzb method # You need to pass in Newzbin's required cookies in order to get rich metadata attributes on the nzbs # If you don't you can still search, you just dont get values like resolution, source, and audio data etc. newz = Newzbin::Connection.new('username', 'password') nzbs = newz.search( :q => 'independence day', :ps_rb_video_format => 16, :category => 6 ) puts nzbs.inspect puts nzbs.first.title => puts nzbs.first.attributes.inspect newz.get_nzb(nzbs.first.id) => downloads the nzb file # to find more vars to search with, view the source of this page. yah yeah, i know that sucks. It wont always suck # http://v3.newzbin.com/search # Here's a little taste # :q => casino+royale # this is the query you're searching for # :category => 5 # category is movies, tv, etc # :ps_rb_video_format => 131072 # format means xvid, 720p, x264, etc







