torrent_scraper
v0.4.0
Published
torrent scraping lib for node.js
Downloads
3
Readme
torrentScraper
A node.js module that scrape torrents from different sites (providers) and combine them in a single set.
Installation
$ npm install torrent_scraper
API
var ts = require('torrent_scraper');
//serarch for torrents for 'debian 7', 'unix' category on kickasstorrents and '303' category on thepiratebay
ts.getTorrents('debian 7', { kickasstorrents: 'unix', thepiratebay: '303' }, function(err, torrents){
console.log(err, torrents)
});