From 12aa0289a9b5b87a63633f9e7cca7d409bd7464a Mon Sep 17 00:00:00 2001 From: Sebastian Robinson Date: Sun, 31 Dec 2023 19:57:13 +0000 Subject: [PATCH] Update HBMAME github site, add support for Demul, Kawaks, FinalBurnNEO & Raine sets. --- PDMameUpdate.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/PDMameUpdate.py b/PDMameUpdate.py index 7fe70bd..0c99c24 100755 --- a/PDMameUpdate.py +++ b/PDMameUpdate.py @@ -17,6 +17,10 @@ Basically what it does is: Supported Torrents: * MAME * HBMAME + * Demul + * Kawaks + * FBNeo + * Raine Work in progress… * TODO: implement some error handling @@ -121,7 +125,11 @@ def fetch_remote_torrents(): logging.info('Opening PleasureDome github feed') pdurls = [ 'https://pleasuredome.github.io/pleasuredome/mame/index.html', - 'https://pleasuredome.github.io/pleasuredome/hbmame/index.html' + 'https://pleasuredome.github.io/pleasuredome/nonmame/hbmame/index.html', + 'https://pleasuredome.github.io/pleasuredome/nonmame/demul/index.html', + 'https://pleasuredome.github.io/pleasuredome/nonmame/fbneo/index.html', + 'https://pleasuredome.github.io/pleasuredome/nonmame/kawaks/index.html', + 'https://pleasuredome.github.io/pleasuredome/nonmame/raine/index.html' ] for url in pdurls: page = get(url) @@ -304,6 +312,10 @@ if __name__ == '__main__': regexps = [ re.compile(r'(?<=MAME )[\d.]+'), re.compile(r'(?<=HBMAME )[\d.]+'), + re.compile(r'(?<=Demul )[\d.]+'), + re.compile(r'(?<=Kawaks )[\d.]+'), + re.compile(r'(?<=FBNeo )[\d.]+'), + re.compile(r'(?<=Raine )[\d.]+'), ] config = open_config_file() torrents = defaultdict(dict)