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://www.wikiquote.org/wiki/Title",
|
|
|
|
"#category": ("wikimedia", "wikiquote", "article"),
|
|
|
|
"#class" : wikimedia.WikimediaArticleExtractor,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"#url" : "https://en.wikiquote.org/wiki/Category:Title",
|
|
|
|
"#category": ("wikimedia", "wikiquote", "category"),
|
2024-01-18 15:36:16 +01:00
|
|
|
"#class" : wikimedia.WikimediaArticleExtractor,
|
2024-01-16 22:08:03 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
)
|