Discord.py 重写齿轮:从其他存档加载扩展
Discord.py Rewrite Cogs: Load extensions from other archive
当我尝试加载位于模块文件夹中的配置扩展时,我这样做了,但它不起作用:
bot.load_extension("modules/config")
当我将它移动到主 python 文件所在的同一个文件夹时,它起作用了:
bot.load_extension("config")
那么如何从模块文件夹加载它呢?
根据 load_extension
文档:
name (str) – The extension name to load. It must be dot separated like regular Python imports if accessing a sub-module. e.g. foo.test
if you want to import foo/test.py
.
所以您正在寻找 bot.load_extension("modules.config")
。
当我尝试加载位于模块文件夹中的配置扩展时,我这样做了,但它不起作用:
bot.load_extension("modules/config")
当我将它移动到主 python 文件所在的同一个文件夹时,它起作用了:
bot.load_extension("config")
那么如何从模块文件夹加载它呢?
根据 load_extension
文档:
name (str) – The extension name to load. It must be dot separated like regular Python imports if accessing a sub-module. e.g.
foo.test
if you want to importfoo/test.py
.
所以您正在寻找 bot.load_extension("modules.config")
。