Options
All
  • Public
  • Public/Protected
  • All
Menu

openload-scraper

Openload Scraper

Build Status npm version Dependency Status DevDependency Status License Doge

A scraper for Openload.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i openload-scraper

Usage

const { OpenloadScraper } = require('openload-scraper');

(async () => {
    const url = 'some url';
    const scrap = await new OpenloadScraper().scrap(url);
    if (scrap.success)
        console.log(scrap.data.sources);
})();

API

The API generated with TypeDoc can be found here.

Generated using TypeDoc