mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-01-18 16:58:48 +00:00
фикс кодировки при чтении / TODO
This commit is contained in:
parent
90035b7bc1
commit
32efe3e2d6
6
db.py
6
db.py
@ -1,3 +1,4 @@
|
||||
# TODO: переделать
|
||||
import os
|
||||
import json
|
||||
|
||||
@ -10,10 +11,11 @@ if not os.path.exists('db.json'):
|
||||
|
||||
|
||||
def read_db():
|
||||
with open('db.json', 'r') as openfile:
|
||||
with open("db.json", "r", encoding="utf-8") as openfile:
|
||||
db = json.load(openfile)
|
||||
return db
|
||||
|
||||
def write_db(db):
|
||||
js = json.dumps(db, indent=2)
|
||||
with open("db.json", "w") as outfile:
|
||||
outfile.write(js)
|
||||
outfile.write(js)
|
Loading…
Reference in New Issue
Block a user