Skip to content
This repository has been archived by the owner on Oct 23, 2019. It is now read-only.

Commit

Permalink
Merge pull request #11 from michaelbukachi/update_requests_version
Browse files Browse the repository at this point in the history
Update requests to 2.20.0
  • Loading branch information
Girbons committed Oct 30, 2018
2 parents 76d7eab + 86882b8 commit 124006c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ build/
.tox/

downloaded_comics/
.idea/
venv/
2 changes: 1 addition & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Alessandro De Angelis

## Contributors

be the first
Michael Bukachi
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.4.1 [2018-10-30]

* updated requests (#8 -- thanks @michaelbukachi)

### 0.4 [2018-09-25]

* removed support for https://readcomics.io/ since it's unreachable
Expand Down
2 changes: 1 addition & 1 deletion comics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__title__ = 'comics-downloader'
__autor__ = 'Alessandro De Angelis'
__version__ = '0.4'
__version__ = '0.4.1'
2 changes: 1 addition & 1 deletion comics/sites/readcomiconline.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class for http://readcomiconline.to/
"""
def __init__(self, url):
self._issue_number_regex = r'[(\d)]+'
self._image_regex = 'stImages.push\(\"(.*?)\"\)\;'
self._image_regex = r'stImages.push\(\"(.*?)\"\)\;'
self.antibot = True
super(ReadComicOnline, self).__init__(url)

Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ idna==2.7 # via requests
img2pdf==0.2.4
natsort==5.3.3
pillow==5.1.0 # via img2pdf
requests==2.19.1
requests==2.20.0
six==1.11.0 # via validators
tqdm==4.23.4
urllib3==1.23 # via requests
Expand Down

0 comments on commit 124006c

Please sign in to comment.