aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 9493ef09e34472facc62e42d95c01a374abc5b90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# comicwalker-dl

A python tool to download free manga/comics from [ComicWalker](https://comic-walker.com/).

The downloaded images are untouched from the source, they are not modified in any way.

## Requirements
- python3
- [`requests`](https://docs.python-requests.org/)

## Usage

```
usage: walker.py [-h] [-v] cid

positional arguments:
  cid            content id, chapter URL, or series URL

options:
  -h, --help     show this help message and exit
  -v, --verbose  log more
```

all downloaded chapters are saved to `downloaded_chapters/{title}/{chapter}`

### Examples

#### Raw CID

`./walker.py KDCW_AM05000042010001_68`

#### Chapter page

`./walker.py https://comic-walker.com/viewer/?tw=2&dlcl=ja&cid=KDCW_AM05000042010002_68`

#### Series page

`./walker.py https://comic-walker.com/contents/detail/KDCW_AM05000042010000_68/`

---

feel free to modify the code as you wish.