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