我已阅读到您可以将configspec作为字符串而不是作为ConfigObj模块的文件来传递。问题首先是正确的方法是什么?因为我做了几次尝试,但是他们错了,肯定是因为我听不懂。最重要的是,我需要configspec来检查何时加载数据。
此刻我的配置是这样的:
cfs = """
set default = boolean()
width = integer(min=800, max=1920)
height = integer(min=600, max=1080)
fullscreen = boolean()
music = integer(min=0, max=100)
sound = integer(min=0, max=100)
voice = integer(min=0, max=100)
ambient = integer(min=0, max=100)
other audio = integer(min=0, max=100)
"""
如果您确实需要更多信息,我将更改问题,并添加该信息。