Skip to content
This repository was archived by the owner on Oct 19, 2019. It is now read-only.

Latest commit

 

History

History
38 lines (27 loc) · 1.76 KB

File metadata and controls

38 lines (27 loc) · 1.76 KB

source-scraper-flowplayer-runner

Build Status npm version Dependency Status DevDependency Status License Doge

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
})();

API

The API generated with TypeDoc can be found here.