Skip to content

Post_Processors

Keith Sterling edited this page Sep 21, 2017 · 3 revisions

Post Processors inherit from the abstract base class

    programy.processors.processing.PostProcessor

The class has a single method, process, which takes bot, client and the string to post-process and should return the processed string

    class PostProcessor(Processor):
        def __init__(self):
            Processor.__init__(self)

        @abstractmethod
        def process(self, bot, clientid, string):
            pass
Clone this wiki locally