Skip to content
NodeJS Project to download slides from slideshare website without having to login.
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
utils
README.md
index.js
package.json

README.md

pyslidegrabber

NodeJS Project to download slides from slideshare website without having to login.

Sample Usage Code

const load = require('./pyslidegrabber');

const constants = load.constants;
const options = {

	quality: constants.QUALITY.MEDIUM,
	reqType : constants.REQTYPE.HTTPS


}

load.pygrabber("https://www.slideshare.net/CBInsights/emerging-technology-trends-2017-intern-presentation-78641216"
	,"./MySlides",(err, res)=>{
	console.log(res);
},options);

parameters of pygrabber

1.URL of Slides in Slideshare website
2.Location to save the downloaded slides
3.Options for quality of the slide.

Quality Constants

constants.QUALITY.HIGH
constants.QUALITY.MEDIUM
constants.QUALITY.LOW

You can’t perform that action at this time.