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