mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
38 lines
1.0 KiB
Python
38 lines
1.0 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 foolfuuka
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://archive.4plebs.org/tg/thread/54059290",
|
|
"#category": ("foolfuuka", "4plebs", "thread"),
|
|
"#class" : foolfuuka.FoolfuukaThreadExtractor,
|
|
"#pattern" : r"https://i\.4pcdn\.org/tg/1[34]\d{11}\.(jpg|png|gif)",
|
|
"#count" : 30,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archive.4plebs.org/tg/",
|
|
"#category": ("foolfuuka", "4plebs", "board"),
|
|
"#class" : foolfuuka.FoolfuukaBoardExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archive.4plebs.org/_/search/text/test/",
|
|
"#category": ("foolfuuka", "4plebs", "search"),
|
|
"#class" : foolfuuka.FoolfuukaSearchExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://archive.4plebs.org/tg/gallery/1",
|
|
"#category": ("foolfuuka", "4plebs", "gallery"),
|
|
"#class" : foolfuuka.FoolfuukaGalleryExtractor,
|
|
},
|
|
|
|
)
|