Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mikf
GitHub Repository: mikf/gallery-dl
Path: blob/master/test/results/8kun.py
8838 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 vichan
8
9
10
__tests__ = (
11
{
12
"#url" : "https://8kun.top/test/res/65248.html",
13
"#category": ("vichan", "8kun", "thread"),
14
"#class" : vichan.VichanThreadExtractor,
15
"#pattern" : r"https://media\.128ducks\.com/file_store/\w{64}\.\w+",
16
"#count" : ">= 8",
17
},
18
19
{
20
"#url" : "https://8kun.top/v/index.html",
21
"#category": ("vichan", "8kun", "board"),
22
"#class" : vichan.VichanBoardExtractor,
23
"#pattern" : vichan.VichanThreadExtractor.pattern,
24
"#count" : ">= 100",
25
},
26
27
{
28
"#url" : "https://8kun.top/v/2.html",
29
"#category": ("vichan", "8kun", "board"),
30
"#class" : vichan.VichanBoardExtractor,
31
},
32
33
{
34
"#url" : "https://8kun.top/v/index.html?PageSpeed=noscript",
35
"#category": ("vichan", "8kun", "board"),
36
"#class" : vichan.VichanBoardExtractor,
37
},
38
39
)
40
41