XMPP last example for XMPPpy

Материал из Linux Wiki
Версия от 20:26, 11 марта 2023; Rain (обсуждение | вклад) (Новая страница: «<source lang=python> def iq_last_handler(self, iq): repl = iq.buildReply('result') query = xmpp.Node('query', attrs={'xmlns':xmpp.NS_LAST, 'seconds': (int(time.time() - self.last))}) repl.setPayload([query]) self.jabber.send(repl) raise NodeProcessed </source> Category:Python»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к навигацииПерейти к поиску
    def iq_last_handler(self, iq):
        repl = iq.buildReply('result')
        query = xmpp.Node('query', attrs={'xmlns':xmpp.NS_LAST, 'seconds': (int(time.time() - self.last))})
        repl.setPayload([query])
        self.jabber.send(repl)
        raise NodeProcessed