From 80ea9104b8f14326fe2dae69ac7fdbbaecbc890f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 11 Feb 2020 19:00:13 +0100 Subject: [PATCH] [8kun] adjust URL pattern --- gallery_dl/extractor/8kun.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gallery_dl/extractor/8kun.py b/gallery_dl/extractor/8kun.py index 7f4baf06..71629204 100644 --- a/gallery_dl/extractor/8kun.py +++ b/gallery_dl/extractor/8kun.py @@ -64,13 +64,14 @@ class _8kunBoardExtractor(Extractor): """Extractor for 8kun boards""" category = "8kun" subcategory = "board" - pattern = r"(?:https?://)?8kun\.top/([^/?&#]+)/(?:index|\d+)\.html$" + pattern = r"(?:https?://)?8kun\.top/([^/?&#]+)/(?:index|\d+)\.html" test = ( ("https://8kun.top/v/index.html", { "pattern": _8kunThreadExtractor.pattern, "count": ">= 100", }), ("https://8kun.top/v/2.html"), + ("https://8kun.top/v/index.html?PageSpeed=noscript"), ) def __init__(self, match):