Web-Scrapping for magnet links
This software do not contribute to piracy, it's only a bot to find P2P magnet links from web $ npm install
const controller = require('./app/controller')
var search = "dom casmurro"
controller.extractTorrents(search).then(data => {
if (!data.urls.length) {
console.log('No data found 🥺');
return;
}
data.urls.forEach(item => {
i++;
console.log(item.name, item.uri)
});
}).catch(err => console.log(err))
Modify search variable, example: Awesome Dom Casmurro book
var search = "dom casmurro"
The output will be:
# Retrieving sources from source
# Extracting magnets links...
# name | magnet links found
The output with no data found
$ No data found 🥺
$ node web.js
This software is for educational purposes only.