mohan3d / slideshare-go

API-less slideshare downloader in golang.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

slideshare-go

GoDoc Go Report Card
Golang package to download slideshare slides to pdf files.

Installation

$ go get github.com/mohan3d/slideshare-go

Usage

$ slideshare-go -url <slideshare_url> -path <path>
$ slideshare-go -url <slideshare_url> -path <path> -quality <quality>
$ slideshare-go --help

Examples

# download highest quality of 
# https://www.slideshare.net/DeloitteUS/the-hospital-of-the-future-81817523
# and save it to hospital.pdf 
$ slideshare-go -url=https://www.slideshare.net/DeloitteUS/the-hospital-of-the-future-81817523 -path=./hospital.pdf -quality=high

# download normal quality of 
# https://www.slideshare.net/jeanbaptiste.dumont/the-ai-rush
# and save it to ai_rush.pdf 
$ slideshare-go -url=https://www.slideshare.net/jeanbaptiste.dumont/the-ai-rush -path=./ai_rush.pdf -quality=normal

# download lowest quality of 
# https://www.slideshare.net/carologic/ai-and-machine-learning-demystified-by-carol-smith-at-midwest-ux-2017
# and save it to ai.pdf 
$ slideshare-go -url=https://www.slideshare.net/carologic/ai-and-machine-learning-demystified-by-carol-smith-at-midwest-ux-2017 -path=./ai.pdf -quality=low

About

API-less slideshare downloader in golang.

License:MIT License


Languages

Language:Go 100.0%