from twisted.application import service from twisted.words.protocols.jabber import jid from wokkel.component import Component from salut import SalutGateway application = service.Application("Salut directory") xmppcomponent = Component("necton3.int", 5347, "salut.necton3.int", "pass") # xmppcomponent.logTraffic = True salut = SalutGateway() salut.setHandlerParent(xmppcomponent) xmppcomponent.setServiceParent(application)