1- # Comic-Scrapper (Comic Downloader)
1+ # Comic-scraper (Comic Downloader)
22Downloads comics from various websites and creates cbz files from them.
33Currently supports just readcomics.tv
44
55## Installation
66
77### Via pip
8- To install the comic scrapper , simply type this into your terminal (sudo might be necessary):
8+ To install the comic scraper , simply type this into your terminal (sudo might be necessary):
99```
10- pip install comic-scrapper
10+ pip install comic-scraper
1111```
1212
1313### Via pip (local)
1414Clone a copy of the repository using the following command:
1515```
16- git clone [email protected] :AbstractGeek/comic-scrapper .git 16+ git clone [email protected] :AbstractGeek/comic-scraper .git 1717```
1818
1919Open your terminal into the folder and type this into it (sudo might be necessary):
@@ -33,7 +33,7 @@ These can simply be installed by:
3333```
3434pip install -r requirements.txt
3535```
36- That's it. Use comic_scrapper .py to download comics
36+ That's it. Use comic_scraper .py to download comics
3737
3838## Usage
3939Find your comic of interest in readcomics.tv. Copy the url of the comic page.
@@ -42,17 +42,17 @@ http://www.readcomics.tv/comic/spider-man-2016
4242
4343To download all the chapters of the comic, simply call the script and input the url.
4444```
45- comic-scrapper http://www.readcomics.tv/comic/spider-man-2016
45+ comic-scraper http://www.readcomics.tv/comic/spider-man-2016
4646```
4747
4848If you want to set a custom location, add -l and input the location
4949```
50- comic-scrapper -l ~/Comics/ http://www.readcomics.tv/comic/spider-man-2016
50+ comic-scraper -l ~/Comics/ http://www.readcomics.tv/comic/spider-man-2016
5151```
5252
5353If you want to download a select few chapters, add -c and input the chapter numbers.
5454For example, if I want to download chapters 10-20, I use the following command
5555```
56- comic-scrapper -l ~/Comics/ -c 10:20 http://www.readcomics.tv/comic/spider-man-2016
56+ comic-scraper -l ~/Comics/ -c 10:20 http://www.readcomics.tv/comic/spider-man-2016
5757```
5858Note: Only individual chapters or sequential chunks (start: stop ) can currently be downloaded.
0 commit comments