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

Simple library which helps you to retrieve the source of various video streaming sites.

License

Notifications You must be signed in to change notification settings

OpenByteDev/SourceScraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8874883 · May 16, 2019
Sep 1, 2018
May 16, 2019
Aug 6, 2018
Aug 7, 2018
Aug 21, 2018
Aug 5, 2018
May 16, 2019
Jul 25, 2018
Aug 31, 2018
Jul 23, 2018
May 16, 2019
May 16, 2019
Aug 31, 2018
Nov 1, 2018

Repository files navigation

SourceScraper

Build Status npm version Dependency Status DevDependency Status License Doge lerna

Scrap the sources from your favorite video streaming sites.


Supported Sites

Source

Hoster


Getting Started

Installation

$ npm i source-scraper

There is a package available for each site individually which you can find here.

Usage

const { scrapers } = require('source-scraper');

(async () => {
    const url = 'some url';
    const scraper = scrapers.all.getFirstApplicable(url);
    const scrap = await scraper.scrap(url);
    if (scrap.success)
        console.log(scrap.data);
})();

API

The API generated with TypeDoc can be found here.