From f3ffe38195513d9da102ebe5a097651b5d6c7b4d Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Wed, 31 Aug 2022 12:19:22 +0000 Subject: [PATCH] Supprimer 'commands/psx.py' --- commands/psx.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 commands/psx.py diff --git a/commands/psx.py b/commands/psx.py deleted file mode 100644 index c72cc1b..0000000 --- a/commands/psx.py +++ /dev/null @@ -1,11 +0,0 @@ -import requests -import json - -file = requests.get("https://raw.githubusercontent.com/linuxserver/emulatorjs/master/metadata/psx.json") -games = json.loads(file.content) - -for id in games: - for key in games[id]: - if key in ['vid', 'logo', 'back', 'corner']: - print(games[id]['name']) - break