Skip to content

V3N0ME/FIleScrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FIleScrapper

Scrapes and downloads files from a web link

Usage

const Scrappy = require('./lib/scrappy');

const scrap = new Scrappy({
	url: '<URL>',
	fileLocation: '<FILE_LOCATION>',
	extension: 'mkv',
	getFileName: (rawFileName) => {
		return rawFileName.split('.')[2]  + '.mkv';
	},
	getSeasonName: (rawFileName) => {
		return 'S04';
	},
});

scrap.start();

About

Scrapes and downloads files from a web link

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published