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