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