[chevereto] remove 'img.kiwi'

This commit is contained in:
Mike Fährmann
2025-09-26 08:14:04 +02:00
parent 5c5b7cd8ff
commit 2f532bb699
3 changed files with 0 additions and 61 deletions

View File

@@ -1233,12 +1233,6 @@ Consider all listed sites to potentially be NSFW.
<td>Albums, Categories, individual Images, User Profiles, Videos</td>
<td></td>
</tr>
<tr id="imgkiwi" title="imgkiwi">
<td>IMG.Kiwi</td>
<td>https://img.kiwi/</td>
<td>Albums, Categories, individual Images, User Profiles, Videos</td>
<td></td>
</tr>
<tr id="imagepond" title="imagepond">
<td>ImagePond</td>
<td>https://imagepond.net/</td>

View File

@@ -42,10 +42,6 @@ BASE_PATTERN = CheveretoExtractor.update({
"root": "https://jpg6.su",
"pattern": r"jpe?g\d?\.(?:su|pet|fish(?:ing)?|church)",
},
"imgkiwi": {
"root": "https://img.kiwi",
"pattern": r"img\.kiwi",
},
"imagepond": {
"root": "https://imagepond.net",
"pattern": r"imagepond\.net",

View File

@@ -1,51 +0,0 @@
# -*- 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 chevereto
__tests__ = (
{
"#url" : "https://img.kiwi/image/79de2c41-70f9-4a87-bd6d-00fe9997c0c4.JR2wZz",
"#category": ("chevereto", "imgkiwi", "image"),
"#class" : chevereto.CheveretoImageExtractor,
"#results" : "https://img.kiwi/images/2023/02/28/11ac1ebf28a2eae8265026b28e9c4413.jpg",
"#sha1_content": "9ea704a77e2038b9008350682cfad53a614a60bd",
"album" : "Kins3y Wolansk1",
"extension": "jpg",
"filename" : "11ac1ebf28a2eae8265026b28e9c4413",
"id" : "JR2wZz",
"url" : "https://img.kiwi/images/2023/02/28/11ac1ebf28a2eae8265026b28e9c4413.jpg",
"user" : "johnirl",
},
{
"#url" : "https://img.kiwi/album/kins3y-wolansk1.8Jxc",
"#category": ("chevereto", "imgkiwi", "album"),
"#class" : chevereto.CheveretoAlbumExtractor,
"#pattern" : chevereto.CheveretoImageExtractor.pattern,
"#count" : 19,
},
{
"#url" : "https://img.kiwi/johnirl",
"#category": ("chevereto", "imgkiwi", "user"),
"#class" : chevereto.CheveretoUserExtractor,
"#pattern" : chevereto.CheveretoImageExtractor.pattern,
"#range" : "1-20",
"#count" : 20,
},
{
"#url" : "https://img.kiwi/johnirl/albums",
"#category": ("chevereto", "imgkiwi", "user"),
"#class" : chevereto.CheveretoUserExtractor,
"#pattern" : chevereto.CheveretoAlbumExtractor.pattern,
"#count" : range(155, 175),
},
)