merge #6227: [everia] add support (#1067, #2472, #4091)

This commit is contained in:
Mike Fährmann
2024-11-03 17:52:17 +01:00
5 changed files with 158 additions and 0 deletions

51
test/results/everia.py Normal file
View File

@@ -0,0 +1,51 @@
# -*- 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 everia
__tests__ = (
{
"#url" : "https://everia.club/2024/09/23/mikacho-조미카-joapictures-someday/",
"#class": everia.EveriaPostExtractor,
"#count": 32,
"title" : "Mikacho 조미카, JOApictures Someday",
"post_category": "Korea",
"tags" : ["[JOApictures]", "Mikacho 조미카"]
},
{
"#url" : "https://everia.club/tag/miku-tanaka-%e7%94%b0%e4%b8%ad%e7%be%8e%e4%b9%85/",
"#class" : everia.EveriaTagExtractor,
"#pattern": everia.EveriaPostExtractor.pattern,
"#count" : "> 50",
},
{
"#url" : "https://everia.club/category/japan/",
"#class" : everia.EveriaCategoryExtractor,
"#pattern": everia.EveriaPostExtractor.pattern,
"#range" : "1-50",
"#count" : 50,
},
{
"#url" : "https://everia.club/2023/10/05/",
"#class" : everia.EveriaDateExtractor,
"#pattern": everia.EveriaPostExtractor.pattern,
"#count" : 34,
},
{
"#url" : "https://everia.club/?s=saika",
"#class" : everia.EveriaSearchExtractor,
"#pattern": everia.EveriaPostExtractor.pattern,
"#range" : "1-15",
"#count" : 15,
},
)