From cec804951b97bcab81551bb8c7a1a1e1c473aaa7 Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Wed, 7 Oct 2020 13:03:27 +0800 Subject: [Update] --- ATRI/modules/favoIMP/__init__.py | 58 ---------------------------------------- ATRI/modules/favoIMP/user.json | 1 - 2 files changed, 59 deletions(-) delete mode 100644 ATRI/modules/favoIMP/__init__.py delete mode 100644 ATRI/modules/favoIMP/user.json (limited to 'ATRI/modules/favoIMP') diff --git a/ATRI/modules/favoIMP/__init__.py b/ATRI/modules/favoIMP/__init__.py deleted file mode 100644 index 3dabdae..0000000 --- a/ATRI/modules/favoIMP/__init__.py +++ /dev/null @@ -1,58 +0,0 @@ -import json -from random import randint -from pathlib import Path - -def GetFavoIMP(u): - try: - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'r') as f: - data = json.load(f) - except: - return 0 - - try: - if data[f"{u}"][0]: - pass - else: - return 0 - except: - return 0 - - return [data[f"{u}"][0], data[f"{u}"][1]] - -def AddFavoIMP(u, f:int, s:bool): - if s: - favoIMP = randint(1,f) - else: - favoIMP = f - try: - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'r') as a: - data = json.load(a) - data[f"{u}"][0] = int(data[f"{u}"][0]) + favoIMP - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'w') as a: - a.write(json.dumps(data)) - a.close() - except: - data = {} - data[f"{u}"] = [f"{favoIMP}"] - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'w') as a: - a.write(json.dumps(data)) - a.close() - -def DelFavoIMP(u, f:int, s:bool): - if s: - favoIMP = randint(1,f) - else: - favoIMP = f - try: - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'r') as a: - data = json.load(a) - data[f"{u}"][0] = int(data[f"{u}"][0]) - favoIMP - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'w') as a: - a.write(json.dumps(data)) - a.close() - except: - data = {} - data[f"{u}"] = [f"{0 - favoIMP}"] - with open(Path('.') / 'ATRI' / 'modules' / 'favoIMP' / 'user.json', 'w') as a: - a.write(json.dumps(data)) - a.close() \ No newline at end of file diff --git a/ATRI/modules/favoIMP/user.json b/ATRI/modules/favoIMP/user.json deleted file mode 100644 index 9e26dfe..0000000 --- a/ATRI/modules/favoIMP/user.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file -- cgit v1.2.3