A webtoon comic downloader for the command line/terminal
| .github/workflows | ||
| .gitignore | ||
| .goreleaser.yaml | ||
| go.mod | ||
| go.sum | ||
| main.go | ||
| README.md | ||
webtoon-dl
Download webtoon comics as PDFs using a terminal/command line.
Usage
# download single episodes
webtoon-dl <your-webtoon-episode-url>
# download entire series
webtoon-dl <your-webtoon-series-url>
# create single pdfs from a range of episodes (inclusive)
webtoon-dl --min-ep=10 --max-ep=20 <your-webtoon-series-url>
Installation
Homebrew
brew install robinovitch61/tap/webtoon-dl
# to upgrade
brew update && brew upgrade webtoon-dl
Download from Github
Download the relevant binary for your operating system (MacOS = Darwin) from
the latest github release. Unpack/extract it, then move the
binary or .exe to somewhere accessible in your path, e.g. mv ./webtoon-dl /usr/local/bin.
Using go installed on your machine
go install github.com/robinovitch61/webtoon-dl@latest
Build from Source
Clone this repo, build from source with cd <cloned_repo> && go build, then move the binary to somewhere accessible in
your path, e.g. mv ./webtoon-dl /usr/local/bin.