Ejemplo n.º 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()
Ejemplo n.º 2
0
def process_transforms():
    """
        A test of the transformation processor.
    """
    tp = TransformProcessor()
    tp.load_from_file()
    tp.process()
    tp.output_to_file()
    tp.show()
Ejemplo n.º 3
0
    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()