mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
[simplyhentai] fix image URLs
This commit is contained in:
parent
4409d00141
commit
87a87bff7e
@ -94,7 +94,8 @@ class BobxIdolExtractor(BobxExtractor):
|
||||
subcategory = "idol"
|
||||
pattern = r"(?:https?://)?(?:www\.)?bobx\.com/([^/]+/[^/?&#]+)/?$"
|
||||
test = ("http://www.bobx.com/idol/rin-okabe/", {
|
||||
"url": "74d80bfcd53b738b31909bb42e5cc97c41b475b8",
|
||||
"pattern": BobxGalleryExtractor.pattern,
|
||||
"count": ">= 6",
|
||||
})
|
||||
|
||||
def items(self):
|
||||
@ -107,6 +108,5 @@ class BobxIdolExtractor(BobxExtractor):
|
||||
for part in text.extract_iter(page, '="photoset/', '"'):
|
||||
# skip every other entry
|
||||
skip = not skip
|
||||
if skip:
|
||||
continue
|
||||
yield Message.Queue, "{}photoset/{}".format(url, part), data
|
||||
if not skip:
|
||||
yield Message.Queue, "{}photoset/{}".format(url, part), data
|
||||
|
@ -67,7 +67,10 @@ class SimplyhentaiGalleryExtractor(GalleryExtractor):
|
||||
headers = {"Accept": "application/json"}
|
||||
images = self.request(url, headers=headers).json()
|
||||
return [
|
||||
(urls["full"], {"image_id": text.parse_int(image_id)})
|
||||
(
|
||||
urls["full"].replace("/giant_thumb_", "/"),
|
||||
{"image_id": text.parse_int(image_id)},
|
||||
)
|
||||
for image_id, urls in sorted(images.items())
|
||||
]
|
||||
|
||||
|
@ -27,7 +27,6 @@ TRAVIS_SKIP = {
|
||||
# temporary issues, etc.
|
||||
BROKEN = {
|
||||
"8chan",
|
||||
"hentaifoundry",
|
||||
"mangapark",
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user