|
|
@ -1,3 +1,4 @@
|
|
|
|
|
|
|
|
# TODO: переделать
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
|
|
@ -10,10 +11,11 @@ if not os.path.exists('db.json'):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def read_db():
|
|
|
|
def read_db():
|
|
|
|
with open('db.json', 'r') as openfile:
|
|
|
|
with open("db.json", "r", encoding="utf-8") as openfile:
|
|
|
|
db = json.load(openfile)
|
|
|
|
db = json.load(openfile)
|
|
|
|
return db
|
|
|
|
return db
|
|
|
|
|
|
|
|
|
|
|
|
def write_db(db):
|
|
|
|
def write_db(db):
|
|
|
|
js = json.dumps(db, indent=2)
|
|
|
|
js = json.dumps(db, indent=2)
|
|
|
|
with open("db.json", "w") as outfile:
|
|
|
|
with open("db.json", "w") as outfile:
|
|
|
|
outfile.write(js)
|
|
|
|
outfile.write(js)
|