2023-09-10 14:45:01 +02:00
|
|
|
# -*- 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 szurubooru
|
|
|
|
|
|
|
|
|
|
|
|
__tests__ = (
|
|
|
|
{
|
|
|
|
"#url" : "https://booru.bcbnsfw.space/posts/query=simple_background",
|
|
|
|
"#category": ("szurubooru", "bcbnsfw", "tag"),
|
|
|
|
"#class" : szurubooru.SzurubooruTagExtractor,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"#url" : "https://booru.bcbnsfw.space/post/1599",
|
2023-11-27 18:30:53 +01:00
|
|
|
"#comment" : "now only available as WebP",
|
2023-09-10 14:45:01 +02:00
|
|
|
"#category": ("szurubooru", "bcbnsfw", "post"),
|
|
|
|
"#class" : szurubooru.SzurubooruPostExtractor,
|
|
|
|
"#pattern" : r"https://booru\.bcbnsfw\.space/data/posts/1599_53784518e92086bd\.png",
|
2023-11-27 18:30:53 +01:00
|
|
|
"#sha1_content": "55f8b8d187adc82f2dcaf2aa89db0ae21b08c0b0",
|
2023-09-10 14:45:01 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
)
|