1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00

[imgth] use text.extract_all

This commit is contained in:
Mike Fährmann 2015-11-03 00:11:08 +01:00
parent 353ac1e00b
commit 1352187758
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -58,16 +58,15 @@ class ImgthExtractor(Extractor):
def get_job_metadata(self, page):
"""Collect metadata for extractor-job"""
title, pos = text.extract(page, '<h1>', '</h1>')
count, pos = text.extract(page, 'total of images in this gallery: ', ' ', pos)
date , pos = text.extract(page, 'created on ', ' by <', pos)
_ , pos = text.extract(page, 'href="/users/', '', pos)
user , pos = text.extract(page, '>', '<', pos)
return {
data = {
"category": info["category"],
"gallery-id": self.gid,
"title": title,
"user": user,
"date": date,
"count": count,
}
data, _ = text.extract_all(page, (
("title", '<h1>', '</h1>'),
("count", 'total of images in this gallery: ', ' '),
("date" , 'created on ', ' by <'),
(None , 'href="/users/', ''),
("user" , '>', '<'),
), values=data)
return data