verystream-scraper-standalone
v1.0.0
Published
A scraper for Verystream
Downloads
10
Maintainers
Readme
Verystream Scraper
A scraper for Verystream.
This package is NOT YET part of the SourceScraper-Project.
Only a standalone module.
Getting Started
Installation
$ npm i verystream-scraper-standalone
Usage
const { VerystreamScraper } = require('verystream-scraper-standalone');
(async () => {
const url = 'some url';
const scrap = await new VerystreamScraper().scrap(url);
if (scrap.success)
console.log(scrap.data.sources);
})();