diff --git a/config.py b/config.py index 4cdb664..99b6199 100644 --- a/config.py +++ b/config.py @@ -1,7 +1,22 @@ import json - -f = open('./config/config.json') - -data = json.load(f) + +try: + f = open('./config/config.json') + data = json.load(f) +except: + data = { + "database": { + "ip": "localhost", + "port": 3306, + "user": "user", + "password": "password" + } + } + + json_object = json.dumps(dictionary, indent=4) + + with open("config/config.json", "w") as outfile: + outfile.write(json_object) + database = data.get("database");