From fa0febe93b4cde466dc031d2c63e173d3332e969 Mon Sep 17 00:00:00 2001 From: none Date: Sun, 18 Feb 2024 19:44:57 +0300 Subject: [PATCH] up --- db.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 db.py diff --git a/db.py b/db.py new file mode 100644 index 0000000..7c86df9 --- /dev/null +++ b/db.py @@ -0,0 +1,20 @@ +import os +import json + +if not os.path.exists('config.json'): + db = {} + js = json.dumps(db, indent=2) + with open("config.json", "w") as outfile: + outfile.write(js) + print('Created new config.json') + + +def read(file = 'config.json'): + with open(file, "r", encoding="utf-8") as openfile: + db = json.load(openfile) + return db + +def write(db, file = 'config.json'): + js = json.dumps(db, indent=2, ensure_ascii=False) + with open(file, "w", encoding="utf-8") as outfile: + outfile.write(js)