Novel-downloader is a simple Python 3 script to download web novel from following sources:
Currently, no support for other sources
Usage:
$ python3 main.py https://lightnovelreader.org/i-reincarnated-but-will-try-to-live-without-using-my-cheat-ability
$ python3 main.py https://lightnovelreader.org/i-reincarnated-but-will-try-to-live-without-using-my-cheat-ability -g https://lightnovelreader.org/i-reincarnated-but-will-try-to-live-without-using-my-cheat-ability/chapter-1
Variant 1 - will assume that there are simple chapter numeration system
Variant 2 - option [-g]
will receive list of chapters from any available chapter in the novel
After downloading you will have html-like file
To convert it to epub or other useful format simply add extension .html first
Then install pandoc and use following code:
$ pandoc -o "Novel name.epub" "Novel name.html"
28-02-2022