2024-02-07 18:35:12 +00:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
|
|
|
|
if not os.path.exists('db.json'):
|
2024-04-20 08:55:10 +00:00
|
|
|
db = {"token": "None"}
|
2024-02-07 18:35:12 +00:00
|
|
|
js = json.dumps(db, indent=2)
|
|
|
|
with open("db.json", "w") as outfile:
|
|
|
|
outfile.write(js)
|
2024-04-20 08:55:10 +00:00
|
|
|
print('Создана БД')
|
|
|
|
print('Введите токен db.json')
|
|
|
|
exit()
|
2024-02-07 18:35:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
def read_db(file = 'db.json'):
|
|
|
|
with open(file, "r", encoding="utf-8") as openfile:
|
|
|
|
db = json.load(openfile)
|
|
|
|
return db
|
|
|
|
|
|
|
|
def write_db(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)
|