Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 1.45 KB

README.md

File metadata and controls

34 lines (29 loc) · 1.45 KB

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