Bibe

License

Bibe is a command-line tool that allows you to download every chapter (or a subset) of a series from websites like webtoons.com or mangadex.org.

Supported website

How to install

Pre-compiled binaries

You can download a pre-compiled executable for Linux, MacOS and Windows operating systems, then you should copy that executable to a location from your $PATH env:

You might need to run chmod +x bibe_amd64 or chmod +x bibe_darwin.

Build Manually

If you prefer to build bibe manually, or a pre-compiled executable is not provided for your platform, then you can build bibe from the source:

Usage

```bash USAGE: bibe [OPTIONS] --url

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: -b, --begin Start downloading from this chapter [env: BIBEBEGIN=] -d, --delay Delay between each request (in ms) [env: BIBEDELAY=] [default: 1000] -e, --end Stop downloading after this chapter [env: BIBEEND=] -o, --output Output directory [env: BIBEOUTPUT=] [default: .] -r, --retry Max number of retry for HTTP requests [env: BIBERETRY=] [default: 3] -u, --url Series URL [env: BIBEURL=] ```

The simplest invocation only requires you to specify the URL of the series you want to download, the other options have sensible defaults.

bash bibe -u "https://www.webtoons.com/fr/thriller/hell-is-other-people/list?title_no=1841"

If you only want to download a subset of the chapters, you can specify a range. For example, the following command will download the first 10 chapters under the specified directory:

bash bibe --url "https://www.webtoons.com/fr/thriller/hell-is-other-people/list?title_no=1841" \ --begin 1 --end 10 --output ~/Documents/Books/Webtoons