[bunkr] update domain (#3636)

This commit is contained in:
Mike Fährmann
2023-02-09 19:28:32 +01:00
parent 5503ac4d5e
commit 2a53e6445c
2 changed files with 8 additions and 8 deletions

View File

@@ -111,7 +111,7 @@ Consider all sites to be NSFW unless otherwise known.
</tr> </tr>
<tr> <tr>
<td>Bunkr</td> <td>Bunkr</td>
<td>https://bunkr.ru/</td> <td>https://bunkr.su/</td>
<td>Albums</td> <td>Albums</td>
<td></td> <td></td>
</tr> </tr>

View File

@@ -6,20 +6,20 @@
# it under the terms of the GNU General Public License version 2 as # it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation. # published by the Free Software Foundation.
"""Extractors for https://bunkr.ru/""" """Extractors for https://bunkr.su/"""
from .lolisafe import LolisafeAlbumExtractor from .lolisafe import LolisafeAlbumExtractor
from .. import text, util from .. import text, util
class BunkrAlbumExtractor(LolisafeAlbumExtractor): class BunkrAlbumExtractor(LolisafeAlbumExtractor):
"""Extractor for bunkr.ru albums""" """Extractor for bunkr.su albums"""
category = "bunkr" category = "bunkr"
root = "https://bunkr.ru" root = "https://bunkr.su"
pattern = r"(?:https?://)?(?:app\.)?bunkr\.(?:ru|is|to)/a/([^/?#]+)" pattern = r"(?:https?://)?(?:app\.)?bunkr\.(?:[sr]u|is|to)/a/([^/?#]+)"
test = ( test = (
("https://bunkr.ru/a/Lktg9Keq", { ("https://bunkr.su/a/Lktg9Keq", {
"pattern": r"https://cdn\.bunkr\.ru/test-テスト-\"&>-QjgneIQv\.png", "pattern": r"https://cdn\.bunkr\.su/test-テスト-\"&>-QjgneIQv\.png",
"content": "0c8768055e4e20e7c7259608b67799171b691140", "content": "0c8768055e4e20e7c7259608b67799171b691140",
"keyword": { "keyword": {
"album_id": "Lktg9Keq", "album_id": "Lktg9Keq",
@@ -32,7 +32,7 @@ class BunkrAlbumExtractor(LolisafeAlbumExtractor):
}, },
}), }),
# mp4 (#2239) # mp4 (#2239)
("https://app.bunkr.is/a/ptRHaCn2", { ("https://app.bunkr.ru/a/ptRHaCn2", {
"pattern": r"https://media-files\.bunkr\.ru/_-RnHoW69L\.mp4", "pattern": r"https://media-files\.bunkr\.ru/_-RnHoW69L\.mp4",
"content": "80e61d1dbc5896ae7ef9a28734c747b28b320471", "content": "80e61d1dbc5896ae7ef9a28734c747b28b320471",
}), }),