使用 Twisted Python IRC 框架列出 IRC 频道中的用户
我正在尝试编写一个函数,使用 Twisted Python 将 IRC 频道中的昵称列表打印到该频道。我该怎么做?我已经阅读了 API 文档,并且只在此网站上看到了一个与我类似的问题,但它并没有真正回答我的问题。如果我知道如何获取用户列表(或者 Twisted 识别它的任何内容),我可以简单地使用 for 循环迭代该列表,但我不知道如何获取该列表。
I am trying to write a function that will print the lists of nicks in an IRC channel to the channel using Twisted Python. How do I do this? I have read the API documentation and I have only seen one question similar to mine on this site, but it doesn't really answer my question. If I knew how to get the userlist (or whatever it is Twisted recognizes it as), I could simply iterate the list using a for loop, but I don't know how to get this list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎认为链接的示例是相同的,使用
WHO
,不同的命令,不同的目的。正确的方法是使用NAMES
。扩展 IRCClient 以支持名称命令。
例子:
The linked example you seem to think is the same, uses
WHO
, different command, different purpose. The correct way is to useNAMES
.Extended IRCClient to support a names command.
Example: