ninexbuddy-scraper
v1.0.6
Published
A scraper for Ninexbuddy
Downloads
19
Maintainers
Readme
9xbuddy Scraper
A scraper for 9xbuddy.
This package is part of the SourceScraper-Project.
Getting Started
Installation
$ npm i ninexbuddy-scraper
Usage
const { NinexbuddyScraper } = require('ninexbuddy-scraper');
(async () => {
const url = 'some url';
const scrap = await new NinexbuddyScraper().scrap(url);
if (scrap.success)
console.log(scrap.data.sources);
})();