mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-24 03:32:33 +01:00
49 lines
1.8 KiB
Python
49 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# 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 images from https://danbooru.donmai.us/"""
|
|
|
|
from . import booru
|
|
|
|
|
|
class DanbooruExtractor(booru.JSONBooruExtractor):
|
|
"""Base class for danbooru extractors"""
|
|
category = "danbooru"
|
|
api_url = "https://danbooru.donmai.us/posts.json"
|
|
|
|
|
|
class DanbooruTagExtractor(DanbooruExtractor, booru.BooruTagExtractor):
|
|
"""Extractor for images from danbooru based on search-tags"""
|
|
subcategory = "tag"
|
|
pattern = [(r"(?:https?://)?(?:www\.)?danbooru.donmai.us/posts"
|
|
r"\?(?:utf8=%E2%9C%93&)?tags=([^&]+)")]
|
|
test = [("https://danbooru.donmai.us/posts?tags=bonocho", {
|
|
"url": "f94774bcb5169e943efb4d7bb51c47ae786b05f3",
|
|
"content": "b196fb9f1668109d7774a0a82efea3ffdda07746",
|
|
})]
|
|
|
|
|
|
class DanbooruPoolExtractor(DanbooruExtractor, booru.BooruPoolExtractor):
|
|
"""Extractor for image-pools from danbooru"""
|
|
subcategory = "pool"
|
|
pattern = [r"(?:https?://)?(?:www\.)?danbooru.donmai.us/pools/(\d+)"]
|
|
test = [("https://danbooru.donmai.us/pools/7659", {
|
|
"url": "73c02ec3d67ffd46d489dd6cfd7b35fee053865c",
|
|
"content": "b16bab12bea5f7ea9e0a836bf8045f280e113d99",
|
|
})]
|
|
|
|
|
|
class DanbooruPostExtractor(DanbooruExtractor, booru.BooruPostExtractor):
|
|
"""Extractor for single images from danbooru"""
|
|
subcategory = "post"
|
|
pattern = [r"(?:https?://)?(?:www\.)?danbooru.donmai.us/posts/(\d+)"]
|
|
test = [("https://danbooru.donmai.us/posts/294929", {
|
|
"url": "9caa006a4d9eedbacbe030655ade0d3225399749",
|
|
"content": "5e255713cbf0a8e0801dc423563c34d896bb9229",
|
|
})]
|