def do_single_export (self, args)    :
     gxml2_exporter.recipe_table_to_xml(args['rd'],
                                        [args['rec']],
                                        args['out'],
                                        change_units=args['change_units'],
                                        mult=args['mult']
                                        ).run()
Example #2
0
 def do_single_export(self, args):
     gxml2_exporter.recipe_table_to_xml(args['rd'], [args['rec']],
                                        args['out'],
                                        change_units=args['change_units'],
                                        mult=args['mult']).run()
Example #3
0
 def get_multiple_exporter(self, args):
     return gxml2_exporter.recipe_table_to_xml(
         args['rd'],
         args['rv'],
         args['file'],
     )
 def get_multiple_exporter (self, args):
     return gxml2_exporter.recipe_table_to_xml(
         args['rd'],
         args['rv'],
         args['file'],
         )
Example #5
0
 def do_single_export(self, args):
     gxml2_exporter.recipe_table_to_xml(
         args["rd"], [args["rec"]], args["out"], change_units=args["change_units"], mult=args["mult"]
     ).run()
Example #6
0
 def get_multiple_exporter(self, args):
     return gxml2_exporter.recipe_table_to_xml(args["rd"], args["rv"], args["file"])