Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mikf
GitHub Repository: mikf/gallery-dl
Path: blob/master/test/results/animereactor.py
8935 views
1
# -*- coding: utf-8 -*-
2
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License version 2 as
5
# published by the Free Software Foundation.
6
7
from gallery_dl.extractor import reactor
8
9
10
__tests__ = (
11
{
12
"#url" : "http://anime.reactor.cc/tag/Anime+Art",
13
"#category": ("reactor", "anime.reactor", "tag"),
14
"#class" : reactor.ReactorTagExtractor,
15
},
16
17
{
18
"#url" : "http://anime.reactor.cc/user/Shuster",
19
"#category": ("reactor", "anime.reactor", "user"),
20
"#class" : reactor.ReactorUserExtractor,
21
},
22
23
{
24
"#url" : "http://anime.reactor.cc/post/3576250",
25
"#category": ("reactor", "anime.reactor", "post"),
26
"#class" : reactor.ReactorPostExtractor,
27
},
28
29
)
30
31