poezio/plugins/iq_show.py

14 lines
421 B
Python
Raw Normal View History

2011-11-15 00:27:42 +00:00
from plugin import BasePlugin
from sleekxmpp.xmlstream.matcher import StanzaPath
from sleekxmpp.xmlstream.handler import Callback
class Plugin(BasePlugin):
def init(self):
self.core.xmpp.register_handler(Callback('Iq_show', StanzaPath('iq'), self.handle_iq))
def handle_iq(self, iq):
self.api.information('%s' % iq, 'Iq')
2011-11-15 00:27:42 +00:00
def cleanup(self):
self.core.xmpp.remove_handler('Iq_show')