mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
30 lines
881 B
Python
30 lines
881 B
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 gelbooru_v01
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://vidyart2.booru.org/index.php?page=post&s=list&tags=all",
|
|
"#category": ("gelbooru_v01", "vidyart2", "tag"),
|
|
"#class" : gelbooru_v01.GelbooruV01TagExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://vidyart2.booru.org/index.php?page=favorites&s=view&id=1",
|
|
"#category": ("gelbooru_v01", "vidyart2", "favorite"),
|
|
"#class" : gelbooru_v01.GelbooruV01FavoriteExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://vidyart2.booru.org/index.php?page=post&s=view&id=39168",
|
|
"#category": ("gelbooru_v01", "vidyart2", "post"),
|
|
"#class" : gelbooru_v01.GelbooruV01PostExtractor,
|
|
},
|
|
|
|
)
|