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