XMPP ping example for XMPPpy
Материал из Linux Wiki
Версия от 20:29, 11 марта 2023; Rain (обсуждение | вклад) (Новая страница: «<source lang=python> def iq_ping_handler(self, iq): repl = iq.buildReply('result') self.jabber.send(repl) raise NodeProcessed </source> Category:Python»)
def iq_ping_handler(self, iq):
repl = iq.buildReply('result')
self.jabber.send(repl)
raise NodeProcessed