passwdtools/configuration.py

31 lines
713 B
Python

import json
class Config:
def __init__(self):
self.data = self.read()
def get_pwdfilename(self):
return self.data["pwdfile"]
def set_pwdfilename(self, pwdfilename):
self.data["pwdfilename"] = pwdfilename
self.write(self.data)
def get_secret(self):
return self.data["secret"]
def set_secret(self, secret):
self.data["secret"] = secret
self.write(self.data)
@staticmethod
def read():
with open('cfg/config.json', mode="r") as cfgfile:
return json.load(cfgfile)
@staticmethod
def write(keys):
with open('cfg/config.json', mode="w") as cfgfile:
cfgfile.write(json.dumps(keys))