mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 11:12:40 +01:00
2d1a104739
pretty sure I previously tested if unescaping strings from the embedded JSON object was necessary ... maybe they changed it
22 lines
716 B
Python
22 lines
716 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2017 Mike Fährmann
|
|
#
|
|
# 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.
|
|
|
|
"""Extract images from https://archive.4plebs.org/"""
|
|
|
|
from . import chan
|
|
|
|
|
|
class FourplebsThreadExtractor(chan.FoolfuukaThreadExtractor):
|
|
"""Extractor for images from threads on 4plebs.org"""
|
|
category = "4plebs"
|
|
root = "https://archive.4plebs.org"
|
|
pattern = [r"(?:https?://)?(?:archive\.)?4plebs\.org/([^/]+)/thread/(\d+)"]
|
|
test = [("https://archive.4plebs.org/tg/thread/54059290", {
|
|
"url": "07452944164b602502b02b24521f8cee5c484d2a",
|
|
})]
|