Skip to content

Commit

Permalink
[kissgoddess] extract all images (closes #2473)
Browse files Browse the repository at this point in the history
and not only the first two per page
#1052 (comment)
  • Loading branch information
mikf committed Apr 6, 2022
1 parent ffa1dd1 commit 78e5d0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gallery_dl/extractor/kissgoddess.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class KissgoddessGalleryExtractor(GalleryExtractor):
test = ("https://kissgoddess.com/album/18285.html", {
"pattern": r"https://pic\.kissgoddess\.com"
r"/gallery/16473/18285/s/\d+\.jpg",
"count": 8,
"count": 19,
"keyword": {
"gallery_id": 18285,
"title": "[Young Champion Extra] 2016.02 No.03 菜乃花 安枝瞳 葉月あや",
Expand All @@ -45,6 +45,8 @@ def images(self, page):
while page:
for url in text.extract_iter(page, "<img src='", "'"):
yield url, None
for url in text.extract_iter(page, "<img data-original='", "'"):
yield url, None

pnum += 1
url = "{}/album/{}_{}.html".format(
Expand Down

0 comments on commit 78e5d0c

Please sign in to comment.