Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit 67ac920

Browse files
committed
renamed files
1 parent 6e5cc3c commit 67ac920

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# Comic-Scrapper (Comic Downloader)
1+
# Comic-scraper (Comic Downloader)
22
Downloads comics from various websites and creates cbz files from them.
33
Currently 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)
1414
Clone 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

1919
Open 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
```
3434
pip 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
3939
Find 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

4343
To 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

4848
If 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

5353
If you want to download a select few chapters, add -c and input the chapter numbers.
5454
For 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
```
5858
Note: Only individual chapters or sequential chunks (start:stop) can currently be downloaded.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ def main():
7575
parser = argparse.ArgumentParser(
7676
description=(
7777
'Downloads all comics from'
78-
'the given url (currently works only with readcomics.tv).'
79-
' Example - A url input'
78+
'the given url (currently works only with readcomics.tv). '
79+
' Example - A url input '
8080
' http://www.readcomics.tv/comic/spider-man-2016 looks '
8181
'for the spider-man-2016 comics in the url, downloads them all, '
8282
'and makes cbz files of all issues.'))

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from setuptools import setup
22

3-
setup(name='comic-scrapper',
3+
setup(name='comic-scraper',
44
version='0.1',
55
description='Scraps comics and creates cbz files',
6-
url='https://github.com/AbstractGeek/comic-scrapper',
7-
download_url='https://github.com/AbstractGeek/comic-scrapper/tarball/0.1',
6+
url='https://github.com/AbstractGeek/comic-scraper',
7+
download_url='https://github.com/AbstractGeek/comic-scraper/tarball/0.1',
88
author='Dinesh Natesan',
99
author_email='[email protected]',
1010
license='MIT',
@@ -14,16 +14,16 @@
1414
'Programming Language :: Python :: 3.5',
1515
'Topic :: Games/Entertainment',
1616
],
17-
keywords='comics scrapper',
18-
packages=['comic_scrapper'],
17+
keywords='comics scraper',
18+
packages=['comic_scraper'],
1919
install_requires=[
2020
'beautifulsoup4',
2121
'futures',
2222
'requests==2.9.1'
2323
],
2424
entry_points={
2525
'console_scripts':
26-
['comic-scrapper=comic_scrapper.comic_scrapper:main'],
26+
['comic-scraper=comic_scraper.comic_scraper:main'],
2727
},
2828
include_package_data=True,
2929
zip_safe=False)

0 commit comments

Comments
 (0)