[e621] support e621.cc and e621.anthro.fr frontend URLs (#6809)

This commit is contained in:
Mike Fährmann
2025-01-15 14:35:37 +01:00
parent 843a39a6c6
commit 6e919a3695
4 changed files with 47 additions and 2 deletions

25
test/results/E621.py Normal file
View File

@@ -0,0 +1,25 @@
# -*- 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 e621
__tests__ = (
{
"#url" : "https://e621.cc/?tags=rating:safe",
"#category": ("E621", "e621", "frontend"),
"#class" : e621.E621FrontendExtractor,
"#urls" : "https://e621.net/posts?tags=rating:safe",
},
{
"#url" : "https://e621.anthro.fr/?q=rating:safe",
"#category": ("E621", "e621", "frontend"),
"#class" : e621.E621FrontendExtractor,
"#urls" : "https://e621.net/posts?tags=rating:safe",
},
)