2023-12-21 09:27:00 -08:00
|
|
|
# webtoon-dl
|
|
|
|
|
|
|
|
|
|
Download [webtoon](https://www.webtoons.com/en/) comics as PDFs using a terminal/command line.
|
|
|
|
|
|
2023-12-21 09:50:19 -08:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
webtoon-dl <your-webtoon-url>
|
|
|
|
|
```
|
|
|
|
|
|
2023-12-21 09:27:00 -08:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
### Homebrew
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
brew install robinovitch61/tap/webtoon-dl
|
|
|
|
|
|
|
|
|
|
# to upgrade
|
|
|
|
|
brew update && brew upgrade webtoon-dl
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Download from Github
|
|
|
|
|
|
2023-12-23 16:50:08 -08:00
|
|
|
Download the relevant binary for your operating system (MacOS = Darwin) from
|
|
|
|
|
the [latest github release](https://github.com/robinovitch61/webtoon-dl/releases). Unpack/extract it, then move the
|
|
|
|
|
binary or .exe to somewhere accessible in your `path`, e.g. `mv ./webtoon-dl /usr/local/bin`.
|
2023-12-21 09:27:00 -08:00
|
|
|
|
|
|
|
|
### Using [go installed on your machine](https://go.dev/doc/install)
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
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`.
|