mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
This commit is contained in:
parent
7033cc14e9
commit
ccb413df71
@ -1505,6 +1505,18 @@ Consider all listed sites to potentially be NSFW.
|
|||||||
<td>Articles</td>
|
<td>Articles</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</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>
|
<tr>
|
||||||
<td colspan="4"><strong>Moebooru and MyImouto</strong></td>
|
<td colspan="4"><strong>Moebooru and MyImouto</strong></td>
|
||||||
|
@ -152,6 +152,16 @@ BASE_PATTERN = WikimediaExtractor.update({
|
|||||||
"root": "https://www.mariowiki.com",
|
"root": "https://www.mariowiki.com",
|
||||||
"pattern": r"(?: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",
|
"nsfwalbum" : "NSFWalbum.com",
|
||||||
"paheal" : "rule #34",
|
"paheal" : "rule #34",
|
||||||
"photovogue" : "PhotoVogue",
|
"photovogue" : "PhotoVogue",
|
||||||
|
"pidgiwiki" : "PidgiWiki",
|
||||||
"pixeldrain" : "pixeldrain",
|
"pixeldrain" : "pixeldrain",
|
||||||
"pornimagesxxx" : "Porn Image",
|
"pornimagesxxx" : "Porn Image",
|
||||||
"pornpics" : "PornPics.com",
|
"pornpics" : "PornPics.com",
|
||||||
|
28
test/results/bulbapedia.py
Normal file
28
test/results/bulbapedia.py
Normal file
@ -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,
|
||||||
|
},
|
||||||
|
|
||||||
|
)
|
24
test/results/pidgiwiki.py
Normal file
24
test/results/pidgiwiki.py
Normal file
@ -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…
Reference in New Issue
Block a user