mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
[gelbooru] update to new extractor interface
This commit is contained in:
parent
1f4866fcd6
commit
5cb46a2cb3
@ -1,10 +1,29 @@
|
||||
from .danbooru import XMLBooruExtractor
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
class Extractor(XMLBooruExtractor):
|
||||
# Copyright 2014, 2015 Mike Fährmann
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
# published by the Free Software Foundation.
|
||||
|
||||
"""Extract image-urls from http://gelbooru.com/"""
|
||||
|
||||
from .booru import XMLBooruExtractor
|
||||
|
||||
info = {
|
||||
"category": "gelbooru",
|
||||
"extractor": "GelbooruExtractor",
|
||||
"directory": ["{category}", "{tags}"],
|
||||
"filename": "{category}_{name}",
|
||||
"pattern": [
|
||||
r"(?:https?://)?(?:www\.)?gelbooru\.com/(?:index\.php)?\?page=post&s=list&tags=([^&]+).*",
|
||||
],
|
||||
}
|
||||
|
||||
class GelbooruExtractor(XMLBooruExtractor):
|
||||
|
||||
def __init__(self, match, config):
|
||||
XMLBooruExtractor.__init__(self, match, config)
|
||||
self.category = "gelbooru"
|
||||
XMLBooruExtractor.__init__(self, match, config, info)
|
||||
self.api_url = "http://gelbooru.com/"
|
||||
self.params = {"page":"dapi", "s":"post", "q":"index", "tags":self.tags}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user