mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-04-19 19:39:51 +00:00
фикс кодировки при чтении / TODO
This commit is contained in:
parent
90035b7bc1
commit
32efe3e2d6
4
db.py
4
db.py
@ -1,3 +1,4 @@
|
|||||||
|
# TODO: переделать
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
|
|
||||||
@ -10,9 +11,10 @@ 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:
|
||||||
|
Loading…
Reference in New Issue
Block a user