From 36d26d1dc61c36b4601aaf75e148060c5bcb98a7 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Sat, 31 Jul 2021 08:17:46 +0000 Subject: =?UTF-8?q?:rotating=5Flight:=20=E8=87=AA=E5=8A=A8=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/console/data_source.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'ATRI/plugins/console/data_source.py') diff --git a/ATRI/plugins/console/data_source.py b/ATRI/plugins/console/data_source.py index 8fe6c04..990b1c9 100644 --- a/ATRI/plugins/console/data_source.py +++ b/ATRI/plugins/console/data_source.py @@ -14,25 +14,24 @@ is_connect = False class Console(Service): - def __init__(self): Service.__init__(self, "控制台") - + @staticmethod def record_data(data: dict) -> None: now_time = datetime.now().strftime("%Y-%m-%d") file_name = f"{now_time}-runtime.json" path = CONSOLE_DIR / file_name if not path.is_file(): - with open(path ,"w", encoding="utf-8") as w: + with open(path, "w", encoding="utf-8") as w: w.write(json.dumps(list())) temp_data = list() - + temp_data: list = json.loads(path.read_bytes()) temp_data.append(data) with open(path, "w", encoding="utf-8") as w: w.write(json.dumps(temp_data, indent=4)) - + @staticmethod def load_data() -> list: now_time = datetime.now().strftime("%Y-%m-%d") @@ -42,7 +41,7 @@ class Console(Service): with open(path, "w", encoding="utf-8") as w: w.write(json.dumps(list())) return list() - + data: list = json.loads(path.read_bytes()) return data @@ -50,7 +49,7 @@ class Console(Service): def store_connect_stat(i: bool): global is_connect is_connect = i - + @staticmethod def is_connect() -> bool: return is_connect -- cgit v1.2.3