mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[imgbox] use text.extract_all
This commit is contained in:
parent
1352187758
commit
e3e754eed7
@ -55,9 +55,11 @@ class ImgboxExtractor(AsynchronousExtractor):
|
||||
def get_file_metadata(self, page):
|
||||
"""Collect metadata for a downloadable file"""
|
||||
data = self.metadata.copy()
|
||||
data["num"] , pos = text.extract(page, '</a> ', ' of ')
|
||||
data["image-key"], pos = text.extract(page, '/i.imgbox.com/', '?download', pos)
|
||||
data["name"] , pos = text.extract(page, ' title="', '"', pos)
|
||||
data, _ = text.extract_all(page, (
|
||||
("num" , '</a> ', ' of '),
|
||||
("image-key", '/i.imgbox.com/', '?download'),
|
||||
("name" , ' title="', '"'),
|
||||
), values=data)
|
||||
return data
|
||||
|
||||
def get_file_url(self, page):
|
||||
|
Loading…
Reference in New Issue
Block a user