This commit is contained in:
2026-06-11 13:18:19 +03:00
parent 833d4b2db0
commit 880b49a309
2 changed files with 156 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import os
import json
if not os.path.exists('db.json'):
db = {'API_TOKEN': None}
js = json.dumps(db, indent=2)
with open("db.json", "w") as outfile:
outfile.write(js)
print('Created new db.json')
def read(file = 'db.json'):
with open(file, "r", encoding="utf-8") as openfile:
db = json.load(openfile)
return db
def write(db, file = 'db.json'):
js = json.dumps(db, indent=2, ensure_ascii=False)
with open(file, "w", encoding="utf-8") as outfile:
outfile.write(js)