0

此外,当我键入 !status 时,Helloworld 不在列表中为 A(活动)。我不认为它正在阅读我的插件。有什么建议么?

# code for helloworldld.py

from errbot import BotPlugin, botcmd

class HelloWorld(BotPlugin):
"""Example 'Hello, world!' plugin for Errbot"""


@botcmd
def hello(self, msg, args):
    """Say hello to the world"""
    return "Hello, world!"
# code for helloworld.plug
[Core]
Name = HelloWorld
Module = helloworld

[Python]
Version = 2+

[Documentation]
Description = Example "Hello, world!" plugin
4

1 回答 1

0

模块名称应与 python 文件名匹配。请检查 BOT_EXTRA_PLUGIN_DIR = r'/plugins' 配置它默认使用插件目录。使用 !plugin_reload 命令进行验证。它应该列出您的插件 HelloWorld。

于 2020-05-11T17:15:37.930 回答