如何在多个频道加入irc bot?

时间:2014-02-28 04:37:44

标签: python bots irc

我使用python设计了一个irc bot。

以下是该机器人的代码: -

https://github.com/sheeshmohsin/theb0t/blob/sheesh/ekan0ra.py

它工作正常,但它加入了一个频道,我必须加入多个频道。请给我一些想法或我可以做的方式。

1 个答案:

答案 0 :(得分:0)

您可以为每个频道多次使用JOIN命令,或者如RFC 1459中所述:

self.sendLine("JOIN #channel1,#channel2,#channel3")

您可以选择包含密钥:

self.sendLine("JOIN #channel1,#channel2,#channel3 key1,,key3#")

此示例演示了连接三个通道,其中第二个通道没有键。