1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 03:02:50 +01:00

[sexcom] fix pagination (#3906)

This commit is contained in:
Mike Fährmann 2023-04-13 15:39:15 +02:00
parent e9353c63d6
commit a2f7274eae
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -35,6 +35,7 @@ class SexcomExtractor(Extractor):
def _pagination(self, url):
while True:
extr = text.extract_from(self.request(url).text)
url = extr('<link rel="next" href="', '"')
while True:
href = extr('<a class="image_wrapper" href="', '"')
@ -42,11 +43,9 @@ class SexcomExtractor(Extractor):
break
yield self.root + href
pager = extr('id="pagenum"', '</div>')
url = text.extr(pager, ' href="', '"')
if not url:
return
url = text.urljoin(self.root, url)
url = text.urljoin(self.root, text.unescape(url))
def _parse_pin(self, url):
response = self.request(url, fatal=False)