You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
584 B
21 lines
584 B
import os
|
|
import json
|
|
|
|
if not os.path.exists('db.json'):
|
|
db = {"token": "NULL", "RCON_HOST": "NULL", "RCON_PORT": "NULL", "RCON_PASS": "NULL"}
|
|
js = json.dumps(db, indent=2)
|
|
with open("db.json", "w") as outfile:
|
|
outfile.write(js)
|
|
print('Created new db.json')
|
|
|
|
|
|
def read(file = 'db.json'):
|
|
with open(file, "r", encoding="utf-8") as openfile:
|
|
db = json.load(openfile)
|
|
return db
|
|
|
|
def write(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)
|