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

Files

Latest commit

May 16, 2019
b4b0c4e · May 16, 2019

History

History

source-scraper-flowplayer-runner

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 16, 2019
Aug 29, 2018
Aug 31, 2018
Aug 29, 2018
Aug 29, 2018
Aug 29, 2018
Aug 29, 2018
May 16, 2019
May 16, 2019
Aug 29, 2018
Aug 29, 2018

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.