# -*- coding: utf-8 -*-
# @Time : 2019-11-18 09:31
# @Author : cxa
# @File : toml_demo.py
# @Software: PyCharm
import toml
import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
class FileOperation:
def __init__(self):
self.dic = dict()
self.toml_file_path = os.path.join(BASE_DIR,
1