[wikimedia] support 'pidgi.net' and 'bulbapedia.bulbagarden.net' (#5205, #5206)

pull/5224/head
Mike Fährmann 7 months ago
parent 7033cc14e9
commit ccb413df71
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1505,6 +1505,18 @@ Consider all listed sites to potentially be NSFW.
<td>Articles</td>
<td></td>
</tr>
<tr>
<td>Bulbapedia</td>
<td>https://bulbapedia.bulbagarden.net/</td>
<td>Articles</td>
<td></td>
</tr>
<tr>
<td>PidgiWiki</td>
<td>https://www.pidgi.net/</td>
<td>Articles</td>
<td></td>
</tr>
<tr>
<td colspan="4"><strong>Moebooru and MyImouto</strong></td>

@ -152,6 +152,16 @@ BASE_PATTERN = WikimediaExtractor.update({
"root": "https://www.mariowiki.com",
"pattern": r"(?:www\.)?mariowiki\.com",
},
"bulbapedia": {
"root": "https://bulbapedia.bulbagarden.net",
"pattern": r"(?:bulbapedia|archives)\.bulbagarden\.net",
"api-path": "/w/api.php",
},
"pidgiwiki": {
"root": "https://www.pidgi.net",
"pattern": r"(?:www\.)?pidgi\.net",
"api-path": "/wiki/api.php",
},
})

@ -101,6 +101,7 @@ CATEGORY_MAP = {
"nsfwalbum" : "NSFWalbum.com",
"paheal" : "rule #34",
"photovogue" : "PhotoVogue",
"pidgiwiki" : "PidgiWiki",
"pixeldrain" : "pixeldrain",
"pornimagesxxx" : "Porn Image",
"pornpics" : "PornPics.com",

@ -0,0 +1,28 @@
# -*- 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://bulbapedia.bulbagarden.net/wiki/Jet",
"#category": ("wikimedia", "bulbapedia", "article"),
"#class" : wikimedia.WikimediaArticleExtractor,
"#pattern" : r"http://archives\.bulbagarden\.net/media/upload/\w+/\w+/[^/?#]+",
"#count" : range(10, 30),
},
{
"#url" : "https://archives.bulbagarden.net/wiki/File:0460Abomasnow-Mega.png",
"#category": ("wikimedia", "bulbapedia", "file"),
"#class" : wikimedia.WikimediaArticleExtractor,
"#pattern" : r"http://archives\.bulbagarden\.net/media/upload/\w+/\w+/[^/?#]+",
"#count" : range(8, 12),
"#archive" : False,
},
)

@ -0,0 +1,24 @@
# -*- 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.pidgi.net/wiki/File:Key_art_-_Fight_Knight.png",
"#category": ("wikimedia", "pidgiwiki", "file"),
"#class" : wikimedia.WikimediaArticleExtractor,
"#urls" : "https://cdn.pidgi.net/images/0/0c/Key_art_-_Fight_Knight.png",
},
{
"#url" : "https://pidgi.net/wiki/File:Key_art_-_Fight_Knight.png",
"#category": ("wikimedia", "pidgiwiki", "file"),
"#class" : wikimedia.WikimediaArticleExtractor,
},
)
Loading…
Cancel
Save