PaiGram/config.py

26 lines
813 B
Python
Raw Normal View History

2022-04-14 07:18:45 +00:00
import ujson
import os
class Config(object):
def __init__(self):
project_path = os.path.dirname(__file__)
config_file = os.path.join(project_path, './config', 'config.json')
if not os.path.exists(config_file):
config_file = os.path.join(project_path, './config', 'config.example.json')
with open(config_file, 'r', encoding='utf-8') as f:
self._config_json: dict = ujson.load(f)
self.DEBUG: bool = self.get_config("debug")
self.ADMINISTRATORS = self.get_config('administrators')
self.MYSQL = self.get_config('mysql')
self.TELEGRAM = self.get_config('telegram')
self.FUNCTION = self.get_config('function')
def get_config(self, name: str):
return self._config_json.get(name, '')
config = Config()