Comiccon is a toy project to download and keep updated comics from here.
go get -u github.com/mendrugory/comiccon$ comiccon help
$ comiccon downloadIf a comic is already downloaded, it will not be downloaded it again.
The configuration of the command is saved in a file called config.json.
- Base Folder: Directory where the comics will be downloaded. It is created if it does not exist (default: current directory)
- Extensions: Extensions of the files which will be downloaded, separated by comma (default: cbr, jpg and pdf)
- Link: Sub link of the route if you only want to download a part of the collection (check the list of collections)
$ comiccon download --basefolder /tmp/comics --extensions cbr --link "DC Chronology"To run it using Docker, the only thing that we must have in mind is mapping the volumes in order to keep the comics.
$ docker run --rm -v /tmp/comics:/tmp/comics mendrugory/comiccon download --basefolder /tmp/comics --extensions cbr --link "DC Chronology"