fromriggingimporttransformerimportosfromstatimportST_MTIME## BIG BAD FUNCTIONAL TEST OF OOo Word Conversion## The interfaces work, but are not quite what we need## I might have to back fill a chain from source/dest graphingfile="/tmp/word.doc"classcurry:def__init__(self,func,*fixed_args):self.func=funcself.fixed_args=fixed_argsdef__call__(self,*variable_args):returnapply(self.func,self.fixed_args+variable_args)data=open("/tmp/word.doc","r").read()data=transformer.convert("WordToHtml",data,filename="word.doc")printdata.getData()