[wikimedia] combine most wikimedia.org sites (#1443)

add wikidata.org and wikivoyage.org
This commit is contained in:
Mike Fährmann
2024-02-10 03:00:58 +01:00
parent c7d17f1111
commit af61d2b037
5 changed files with 59 additions and 73 deletions

23
test/results/wikidata.py Normal file
View File

@@ -0,0 +1,23 @@
# -*- 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 wikimedia
__tests__ = (
{
"#url" : "https://www.wikidata.org/wiki/Title",
"#category": ("wikimedia", "wikidata", "article"),
"#class" : wikimedia.WikimediaArticleExtractor,
},
{
"#url" : "https://en.wikidata.org/wiki/Category:Title",
"#category": ("wikimedia", "wikidata", "category"),
"#class" : wikimedia.WikimediaArticleExtractor,
},
)

View File

@@ -0,0 +1,23 @@
# -*- 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 wikimedia
__tests__ = (
{
"#url" : "https://www.wikivoyage.org/wiki/Title",
"#category": ("wikimedia", "wikivoyage", "article"),
"#class" : wikimedia.WikimediaArticleExtractor,
},
{
"#url" : "https://en.wikivoyage.org/wiki/Category:Title",
"#category": ("wikimedia", "wikivoyage", "category"),
"#class" : wikimedia.WikimediaArticleExtractor,
},
)