source-scraper-flowplayer-runner
v1.0.9
Published
Provides the FlowplayerRunner class for scrapping.
Downloads
19
Maintainers
Readme
source-scraper-flowplayer-runner
Provides the FlowplayerRunner class for scrapping.
This package is part of the SourceScraper-Project.
Getting Started
Installation
$ npm i source-scraper-flowplayer-runner
Usage
const { FlowplayerRunner } = require('source-scraper-flowplayer-runner');
(async () => {
const url = 'some url';
const data = await new FlowplayerRunner().run(url, args => {
// Extract data using args
});
// Do something with extracted data
})();