This repository was archived by the owner on Apr 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -4,34 +4,34 @@ Currently supports just readcomics.tv
44
55## Requirements
66The script is written in python3. It requires the following packages:
7- 1 ) BeautifulSoup4
8- 2 ) requests
9- 3 ) futures (concurrent.futures)
7+ 1 . BeautifulSoup4
8+ 2 . requests
9+ 3 . futures (concurrent.futures)
1010
1111These can simply be installed by:
12- '''
12+ ```
1313pip install -r requirements.txt
14- '''
14+ ```
1515
1616## Usage
1717Find your comic of interest in readcomics.tv. Copy the url of the comic page.
1818For example, If I wanted to download spider-man-2016, I need to copy this url:
1919http://www.readcomics.tv/comic/spider-man-2016
2020
2121To download all the chapters of the comic, simply call the script and input the url.
22- '''
22+ ```
2323python comic-scrapper http://www.readcomics.tv/comic/spider-man-2016
24- '''
24+ ```
2525
2626If you want to set a custom location, add -l and input the location
27- '''
27+ ```
2828python comic-scrapper -l ~/Comics/ http://www.readcomics.tv/comic/spider-man-2016
29- '''
29+ ```
3030
3131You can also make the comic-scrapper script an executable and call it directly
32- '''
32+ ```
3333chmod +x comic-scrapper
3434./comic-scrapper -l ~/Comics/ http://www.readcomics.tv/comic/spider-man-2016
35- '''
35+ ```
3636
3737(Chapter selection option coming up soon)
You can’t perform that action at this time.
0 commit comments