From addb72e1bbc1d2da5f949e844174f607c6f61e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 25 Nov 2021 16:22:17 +0100 Subject: [PATCH] [reactor] support thatpervert.com (closes #2029) --- docs/supportedsites.md | 6 ++++++ gallery_dl/extractor/reactor.py | 3 +++ scripts/supportedsites.py | 1 + 3 files changed, 10 insertions(+) diff --git a/docs/supportedsites.md b/docs/supportedsites.md index e95a529d..5f4ae49d 100644 --- a/docs/supportedsites.md +++ b/docs/supportedsites.md @@ -959,6 +959,12 @@ Consider all sites to be NSFW unless otherwise known. Posts, Search Results, Tag Searches, User Profiles + + ThatPervert + http://thatpervert.com/ + Posts, Search Results, Tag Searches, User Profiles + + Moebooru and MyImouto diff --git a/gallery_dl/extractor/reactor.py b/gallery_dl/extractor/reactor.py index e8ca0b5e..b3a620a6 100644 --- a/gallery_dl/extractor/reactor.py +++ b/gallery_dl/extractor/reactor.py @@ -158,6 +158,9 @@ BASE_PATTERN = ReactorExtractor.update({ "root": "http://pornreactor.cc", "pattern": r"(?:www\.)?(?:pornreactor\.cc|fapreactor.com)", }, + "thatpervert": { + "root": "http://thatpervert.com", + }, }) diff --git a/scripts/supportedsites.py b/scripts/supportedsites.py index 93d809a1..cb9f6451 100755 --- a/scripts/supportedsites.py +++ b/scripts/supportedsites.py @@ -99,6 +99,7 @@ CATEGORY_MAP = { "speakerdeck" : "Speaker Deck", "subscribestar" : "SubscribeStar", "tbib" : "The Big ImageBoard", + "thatpervert" : "ThatPervert", "thebarchive" : "The /b/ Archive", "thecollection" : "The /co/llection", "theloudbooru" : "The Loud Booru",