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