Exemple #1
0
def process_transforms():
    """
        A test of the transformation processor.
    """
    tp = TransformProcessor()
    tp.load_from_file()
    tp.process()
    tp.output_to_file()
    tp.show()
def process_transforms():
    """
        A test of the transformation processor.
    """
    tp = TransformProcessor()
    tp.load_from_file()
    tp.process()
    tp.output_to_file()
    tp.show()
    def process_transforms(self,show=None):
        if show is None:
            show = self.debug

        tp = TransformProcessor()
        tp.load_from_file()
        tp.process()
        tp.output_to_file()
        if show:
            tp.show()