https://github.com/mohan3d/slideshare-go
API-less slideshare downloader in golang.
https://github.com/mohan3d/slideshare-go
client-lib downloader golang slideshare
Last synced: about 2 months ago
JSON representation
API-less slideshare downloader in golang.
- Host: GitHub
- URL: https://github.com/mohan3d/slideshare-go
- Owner: mohan3d
- License: mit
- Created: 2018-11-06T12:44:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-08T11:52:41.000Z (over 7 years ago)
- Last Synced: 2024-06-20T19:21:14.399Z (over 1 year ago)
- Topics: client-lib, downloader, golang, slideshare
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- osint_stuff_tool_collection - Slideshare Downloader
README
# slideshare-go
[](https://godoc.org/github.com/mohan3d/slideshare-go/slideshare)
[](https://goreportcard.com/report/github.com/mohan3d/slideshare-go)
Golang package to download [slideshare](https://www.slideshare.net/) slides to pdf files.
## Installation
```bash
$ go get github.com/mohan3d/slideshare-go
```
## Usage
```sh
$ slideshare-go -url -path
$ slideshare-go -url -path -quality
$ slideshare-go --help
```
## Examples
```sh
# 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
```