我使用python设计了一个irc bot。
以下是该机器人的代码: -
https://github.com/sheeshmohsin/theb0t/blob/sheesh/ekan0ra.py
它工作正常,但它加入了一个频道,我必须加入多个频道。请给我一些想法或我可以做的方式。
答案 0 :(得分:0)
您可以为每个频道多次使用JOIN命令,或者如RFC 1459中所述:
self.sendLine("JOIN #channel1,#channel2,#channel3")
您可以选择包含密钥:
self.sendLine("JOIN #channel1,#channel2,#channel3 key1,,key3#")
此示例演示了连接三个通道,其中第二个通道没有键。