15 lines
487 B
Python
15 lines
487 B
Python
import json, os
|
|
|
|
class Config(object):
|
|
def __init__(self, bot, location="bot.json"):
|
|
self.bot = bot
|
|
self.location = location
|
|
self.full_location = os.path.join(bot.bot_directory,
|
|
self.location)
|
|
self.bot.config = {}
|
|
self.load_config()
|
|
|
|
def load_config(self):
|
|
if os.path.isfile(self.full_location):
|
|
with open(self.full_location) as config_file:
|
|
self.bot.config = json.loads(config_file.read())
|