2024-01-16 22:08:03 +01:00
|
|
|
# -*- 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://species.wikimedia.org/wiki/Geranospiza",
|
|
|
|
"#category": ("wikimedia", "wikispecies", "article"),
|
|
|
|
"#class" : wikimedia.WikimediaArticleExtractor,
|
|
|
|
"#urls" : "https://upload.wikimedia.org/wikipedia/commons/0/01/Geranospiza_caerulescens.jpg",
|
|
|
|
"#sha1_content": "3a17c14b15489928e4154f826af1c42afb5a523e",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"#url" : "https://species.wikimedia.org/wiki/Category:Names",
|
|
|
|
"#category": ("wikimedia", "wikispecies", "category"),
|
2024-01-18 15:36:16 +01:00
|
|
|
"#class" : wikimedia.WikimediaArticleExtractor,
|
2024-01-16 22:08:03 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
)
|