Adds a new `DanbooruRandomExtractor` to support downloading from `danbooru.donmai.us/posts/random?tags=` URLs.
104 lines
3.3 KiB
Python
104 lines
3.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# 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.
|
|
|
|
from gallery_dl.extractor import danbooru
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://aibooru.online/posts?tags=center_frills&z=1",
|
|
"#category": ("Danbooru", "aibooru", "tag"),
|
|
"#class" : danbooru.DanbooruTagExtractor,
|
|
"#pattern" : r"https://cdn\.aibooru\.download/original/[0-9a-f]{2}/[0-9a-f]{2}/[0-9a-f]{32}\.\w+",
|
|
"#count" : range(160, 200),
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.download/posts?tags=center_frills",
|
|
"#category": ("Danbooru", "aibooru", "tag"),
|
|
"#class" : danbooru.DanbooruTagExtractor,
|
|
"#pattern" : r"https://cdn\.aibooru\.download/original/[0-9a-f]{2}/[0-9a-f]{2}/[0-9a-f]{32}\.\w+",
|
|
"#count" : range(160, 200),
|
|
},
|
|
|
|
{
|
|
"#url" : "https://safe.aibooru.online/posts?tags=center_frills",
|
|
"#category": ("Danbooru", "aibooru", "tag"),
|
|
"#class" : danbooru.DanbooruTagExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://general.aibooru.online/posts?tags=center_frills",
|
|
"#category": ("Danbooru", "aibooru", "tag"),
|
|
"#class" : danbooru.DanbooruTagExtractor,
|
|
"#pattern" : r"https://cdn\.aibooru\.download/original/[0-9a-f]{2}/[0-9a-f]{2}/[0-9a-f]{32}\.\w+",
|
|
"#count" : range(100, 120),
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.online/pools/1",
|
|
"#category": ("Danbooru", "aibooru", "pool"),
|
|
"#class" : danbooru.DanbooruPoolExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.online/posts/1",
|
|
"#category": ("Danbooru", "aibooru", "post"),
|
|
"#class" : danbooru.DanbooruPostExtractor,
|
|
"#results" : "https://cdn.aibooru.download/original/8b/af/8baf2d5bb3d6f45deeabf7e1e659f562.png",
|
|
"#sha1_content": "54d548743cd67799a62c77cbae97cfa0fec1b7e9",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.download/posts/1",
|
|
"#category": ("Danbooru", "aibooru", "post"),
|
|
"#class" : danbooru.DanbooruPostExtractor,
|
|
"#results" : "https://cdn.aibooru.download/original/8b/af/8baf2d5bb3d6f45deeabf7e1e659f562.png",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.online/posts/18315",
|
|
"#comment" : "ugoira (#7630)",
|
|
"#category": ("Danbooru", "aibooru", "post"),
|
|
"#class" : danbooru.DanbooruPostExtractor,
|
|
"#options" : {"ugoira": True},
|
|
"#results" : "https://cdn.aibooru.download/original/f9/6b/f96b2b3254884ab527fab0a7e9c39ba9.zip",
|
|
|
|
"_ugoira_original" : False,
|
|
"_ugoira_frame_data[*]": {
|
|
"file" : r"re:^0000\d\d\.jpg$",
|
|
"delay": int,
|
|
},
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.online/explore/posts/popular",
|
|
"#category": ("Danbooru", "aibooru", "popular"),
|
|
"#class" : danbooru.DanbooruPopularExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.online/posts/random?tags=center_frills&z=1",
|
|
"#category": ("Danbooru", "aibooru", "random"),
|
|
"#class" : danbooru.DanbooruRandomExtractor,
|
|
"#pattern" : "https://cdn.aibooru.download/original/.+",
|
|
"#count" : 1,
|
|
|
|
"search_tags": "center_frills",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://aibooru.online/posts/random",
|
|
"#category": ("Danbooru", "aibooru", "random"),
|
|
"#class" : danbooru.DanbooruRandomExtractor,
|
|
"#pattern" : "https://cdn.aibooru.download/original/.+",
|
|
"#count" : 1,
|
|
|
|
"search_tags": "",
|
|
},
|
|
|
|
)
|