[shimmie2] support 'vidya.pics' (#5632)

pull/5712/head
Mike Fährmann 4 months ago
parent 162d4269ec
commit 9abeab5ecf
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1381,6 +1381,12 @@ Consider all listed sites to potentially be NSFW.
<td>Posts, Tag Searches</td>
<td></td>
</tr>
<tr>
<td>Vidya Booru</td>
<td>https://vidya.pics/</td>
<td>Posts, Tag Searches</td>
<td></td>
</tr>
<tr>
<td colspan="4"><strong>szurubooru Instances</strong></td>

@ -92,6 +92,10 @@ BASE_PATTERN = Shimmie2Extractor.update({
"root": "https://rule34hentai.net",
"pattern": r"rule34hentai\.net",
},
"vidyapics": {
"root": "https://vidya.pics",
"pattern": r"vidya\.pics",
},
}) + r"/(?:index\.php\?q=/?)?"

@ -138,6 +138,7 @@ CATEGORY_MAP = {
"tumblrgallery" : "TumblrGallery",
"vanillarock" : "もえぴりあ",
"vidyart2" : "/v/idyart2",
"vidyapics" : "Vidya Booru",
"vk" : "VK",
"vsco" : "VSCO",
"wallpapercave" : "Wallpaper Cave",

@ -0,0 +1,38 @@
# -*- 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 shimmie2
__tests__ = (
{
"#url" : "https://vidya.pics/post/list/kirby/1",
"#category": ("shimmie2", "vidyapics", "tag"),
"#class" : shimmie2.Shimmie2TagExtractor,
"#pattern" : r"https://vidya.pics/_images/[0-9a-f]{32}/\d+",
"#range" : "1-100",
"#count" : 100,
},
{
"#url" : "https://vidya.pics/post/view/108820",
"#category": ("shimmie2", "vidyapics", "post"),
"#class" : shimmie2.Shimmie2PostExtractor,
"#pattern" : r"https://vidya\.pics/_images/277ecdb90285bfa6e0c4cd46d9515b11/108820.+\.png",
"#sha1_content": "7d2fe9327759c231ff17f6e341df749b70b191ce",
"extension": "png",
"file_url" : "https://vidya.pics/_images/277ecdb90285bfa6e0c4cd46d9515b11/108820%20-%201boy%20artist%3Aunknown%20flag%20kirby%20kirby_%28series%29.png",
"filename" : "108820 - 1boy artist:unknown flag kirby kirby_(series)",
"height" : 700,
"id" : 108820,
"md5" : "277ecdb90285bfa6e0c4cd46d9515b11",
"size" : 0,
"tags" : "1boy artist:unknown flag kirby kirby_(series",
"width" : 700,
},
)
Loading…
Cancel
Save