1.自定义一个函数用于调用其他类中的函数:
def run() -> None:
model_name = 类名
getattr(model_name, '类中的一个方法')() # 后面括号中按顺序放入类方法所需的参数
def exec_test(func_name: str, *args, **kwargs):
module_name = TEST_node() # 实例化一个测试类的实例对象
response = getattr(module_name, f'{func_name}')(*args, **kwargs)
return response
2.解析config.ini以及更改config.ini的值:
import configparser
class ConfigReader:
def __init__(self, pth):
# pth为config.ini的路径
self.cfg_file = pth
def get_value(self, section, option):
cf = configparser.ConfigParser()
cf.read(self.cfg_file, encoding='utf-8')
return cf.get(section, option)
def write_value(self, section, option, value):
cp = configparser.ConfigParser()
cp.read(self.cfg_file, encoding='utf-8')
cp.set(section, option, value)
cp.write(open(self.cfg_file, "w"))