diff options
author | Kyomotoi <[email protected]> | 2021-07-31 16:21:23 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2021-07-31 16:21:23 +0800 |
commit | 1d54ec291f2c25cc01f24d0d0163d0bf889457fd (patch) | |
tree | 251004df3f659f79b96b9abce59cc1140e24498c /ATRI/plugins/console/data_source.py | |
parent | beb16b60fe4d8586436f5ada5fdabb6db23f5a29 (diff) | |
parent | 36d26d1dc61c36b4601aaf75e148060c5bcb98a7 (diff) | |
download | ATRI-1d54ec291f2c25cc01f24d0d0163d0bf889457fd.tar.gz ATRI-1d54ec291f2c25cc01f24d0d0163d0bf889457fd.tar.bz2 ATRI-1d54ec291f2c25cc01f24d0d0163d0bf889457fd.zip |
Merge branch 'main' of https://github.com/Kyomotoi/ATRI into main
Diffstat (limited to 'ATRI/plugins/console/data_source.py')
-rw-r--r-- | ATRI/plugins/console/data_source.py | 13 |
1 files changed, 6 insertions, 7 deletions
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 |