57 lines
2.0 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2017-04-08 11:02:32 +02:00
# Copyright 2014-2017 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/"""
2015-11-21 00:55:25 +01:00
from . import booru
2017-02-01 00:53:19 +01:00
2015-11-21 00:55:25 +01:00
class DanbooruExtractor(booru.JSONBooruExtractor):
"""Base class for danbooru extractors"""
category = "danbooru"
api_url = "https://danbooru.donmai.us/posts.json"
2017-02-01 00:53:19 +01:00
2015-11-21 00:55:25 +01:00
class DanbooruTagExtractor(DanbooruExtractor, booru.BooruTagExtractor):
"""Extractor for images from danbooru based on search-tags"""
pattern = [r"(?:https?://)?danbooru\.donmai\.us/posts"
r"\?(?:utf8=%E2%9C%93&)?tags=([^&]+)"]
2015-12-22 03:10:52 +01:00
test = [("https://danbooru.donmai.us/posts?tags=bonocho", {
"content": "b196fb9f1668109d7774a0a82efea3ffdda07746",
2015-12-12 15:59:26 +01:00
})]
2017-02-01 00:53:19 +01:00
2015-11-21 00:55:25 +01:00
class DanbooruPoolExtractor(DanbooruExtractor, booru.BooruPoolExtractor):
"""Extractor for image-pools from danbooru"""
pattern = [r"(?:https?://)?danbooru\.donmai\.us/pools/(\d+)"]
2015-12-12 15:59:26 +01:00
test = [("https://danbooru.donmai.us/pools/7659", {
2015-12-22 03:10:52 +01:00
"content": "b16bab12bea5f7ea9e0a836bf8045f280e113d99",
2015-12-12 15:59:26 +01:00
})]
2017-02-01 00:53:19 +01:00
2015-11-21 00:55:25 +01:00
class DanbooruPostExtractor(DanbooruExtractor, booru.BooruPostExtractor):
"""Extractor for single images from danbooru"""
pattern = [r"(?:https?://)?danbooru\.donmai\.us/posts/(\d+)"]
2015-12-22 03:10:52 +01:00
test = [("https://danbooru.donmai.us/posts/294929", {
"content": "5e255713cbf0a8e0801dc423563c34d896bb9229",
2015-12-12 15:59:26 +01:00
})]
class DanbooruPopularExtractor(DanbooruExtractor, booru.BooruPopularExtractor):
"""Extractor for popular images from danbooru"""
pattern = [r"(?:https?://)?danbooru\.donmai\.us/"
r"explore/posts/popular()(?:\?([^#]*))?"]
test = [
("https://danbooru.donmai.us/explore/posts/popular", None),
(("https://danbooru.donmai.us/explore/posts/popular"
"?date=2017-07-17+14%3A13%3A05+-0400&scale=week"), {
"count": 20,
}),
]
api_url = "https://danbooru.donmai.us/explore/posts/popular.json"