mirror of
https://github.com/Justuser3310/jetwork.git
synced 2025-02-08 01:37:38 +00:00
up
This commit is contained in:
parent
0fb46d1608
commit
fa0febe93b
20
db.py
Normal file
20
db.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import os
|
||||||
|
import json
|
||||||
|
|
||||||
|
if not os.path.exists('config.json'):
|
||||||
|
db = {}
|
||||||
|
js = json.dumps(db, indent=2)
|
||||||
|
with open("config.json", "w") as outfile:
|
||||||
|
outfile.write(js)
|
||||||
|
print('Created new config.json')
|
||||||
|
|
||||||
|
|
||||||
|
def read(file = 'config.json'):
|
||||||
|
with open(file, "r", encoding="utf-8") as openfile:
|
||||||
|
db = json.load(openfile)
|
||||||
|
return db
|
||||||
|
|
||||||
|
def write(db, file = 'config.json'):
|
||||||
|
js = json.dumps(db, indent=2, ensure_ascii=False)
|
||||||
|
with open(file, "w", encoding="utf-8") as outfile:
|
||||||
|
outfile.write(js)
|
Loading…
Reference in New Issue
Block a user