mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 11:12:40 +01:00
cebf800a7f
- https://arch.b4k.co - https://archive.whatisthisimnotgoodwithcomputers.com - https://archive.yeet.net Notes: - The name "whatisthisimnotgoodwithcomputers" is way too long ... - archive.yeet.net is out of date and also blocked by 4chan servers - newest threads are 2 weeks old - using "https://archive.yeet.net" as Referer header results in "403 Forbidden" when accessing 4chan
25 lines
747 B
Python
25 lines
747 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://arch.b4k.co/"""
|
|
|
|
from . import chan
|
|
|
|
|
|
class BfourkThreadExtractor(chan.FoolfuukaThreadExtractor):
|
|
"""Extractor for images from threads on arch.b4k.co"""
|
|
category = "b4k"
|
|
root = "https://arch.b4k.co"
|
|
pattern = [r"(?:https?://)?arch\.b4k\.co/([^/]+)/thread/(\d+)"]
|
|
test = [("http://arch.b4k.co/meta/thread/196/", {
|
|
"url": "cdd4931ac1cd00264b0b54e2e3b0d8f6ae48957e",
|
|
})]
|
|
|
|
def remote(self, media):
|
|
return media["remote_media_link"]
|