From 60d61daf15ef8dda84dbf27c753cd001bf7e008f Mon Sep 17 00:00:00 2001 From: DogmaDragon Date: Sun, 20 Oct 2024 03:56:49 +0300 Subject: [PATCH] Add scraper --- scrapers/ManyVidsClub.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 scrapers/ManyVidsClub.yml diff --git a/scrapers/ManyVidsClub.yml b/scrapers/ManyVidsClub.yml new file mode 100644 index 000000000..7d708980c --- /dev/null +++ b/scrapers/ManyVidsClub.yml @@ -0,0 +1,37 @@ +name: "ManyVids Club" +sceneByURL: + - action: scrapeJson + url: + - manyvids.com/Post + scraper: sceneScraper + queryURL: "{url}" + queryURLReplace: + url: + - regex: '.+Post\/+.*?(.+)' + with: https://api.manyvids.com/feed/posts/$1 +jsonScrapers: + sceneScraper: + scene: + Title: text + Details: text + Code: postId + URL: + selector: postId + postProcess: + - replace: + - regex: ^ + with: https://www.manyvids.com/Post/$1 + Date: + selector: timestamp + postProcess: + - parseDate: 2006-01-02T15:04:05.000Z + Performers: + Name: handle + Studio: + Name: + selector: handle + postProcess: + - replace: + - regex: (.+) + with: "$1 (ManyVids)" +# Last Updated October 20, 2024 \ No newline at end of file