from twisted.internet.protocol import ServerFactory class LogFactory(ServerFactory): def startFactory(self): self.log = open('log.txt', 'w') def stopFactory(self): self.log.close()