aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorjeondae <81861048+jeondae@users.noreply.github.com>2022-04-23 21:13:28 +0700
committerGitHub <noreply@github.com>2022-04-23 21:13:28 +0700
commitbfd05bbb397a5a6c3f5d9f5a729c440349bf42af (patch)
tree8423746ec90ccfbe4389c60c47cac4b4d0740858 /README.md
parent35db47d7f0fc83b7a05e9d1daeeb2ee3e287c82a (diff)
downloadcomicwalker-dl-bfd05bbb397a5a6c3f5d9f5a729c440349bf42af.tar.gz
comicwalker-dl-bfd05bbb397a5a6c3f5d9f5a729c440349bf42af.tar.bz2
comicwalker-dl-bfd05bbb397a5a6c3f5d9f5a729c440349bf42af.zip
Add files via upload
Diffstat (limited to 'README.md')
-rw-r--r--README.md53
1 files changed, 53 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9e1a6c3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,53 @@
+# comicwalker-dl
+
+A python tool to download free manga/comic from [ComicWalker](https://comic-walker.com/ "ComicWalker official website").
+
+The downloaded images are untouched and original from source, they are not modified in any way. flow:
+
+> image source (.webp) -> download process by python script -> output (.webp)
+
+## Requirements
+- python version 3
+- essential modules on `requirements.txt`, do `pip install -r requirements.txt`
+ - for all modules see inside the code
+
+## Usage
+this tool is a standalone python script, you can download the files as a zip/git clone, or just download `walker.py` and the requirements is enough.
+
+0. prep the requirements beforehand
+1. put `walker.py` in a folder of your choice
+2. open a terminal (.i.e CMD) in that folder
+3. see below for detailed usage
+
+all downloaded chapters are saved to `/downloaded_chapters/{title}/{chapter}`
+
+---
+```
+usage: walker.py [-h] [-cid CID] [-nolog]
+
+optional arguments:
+ -h, --help show this help message and exit
+ -cid CID content id, &cid={...}. see url when reading a chapter
+ -nolog no progressive download logs on terminal
+```
+---
+
+to download a chapter, simply run the .py script by:
+
+```> python walker.py -cid [CID]```
+
+---
+
+example:
+
+```> python walker.py -cid KDCW_CW01000002010001_68```
+
+---
+
+add `-nolog` argument if you want clean terminal output during the progress.
+
+```> python walker.py -cid KDCW_CW01000002010001_68 -nolog```
+
+---
+
+feel free to modify the code as you wish. \ No newline at end of file