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