File indexing completed on 2024-04-14 03:53:49

0001 #! /usr/bin/env python
0002 # -*- coding: utf-8 -*-
0003 
0004 import os
0005 
0006 _containers = (
0007                "KBiHash",
0008                "QHash",
0009                )
0010 _types = (
0011           "int",
0012           "QString",
0013           )
0014 
0015 for _container in _containers:
0016   for _type in _types:
0017     os.system("xmlpatterns aggregrator.xls -param container=" +
0018               _container.lower() + " -param cml_container=" + _container + " -param type=" + _type.lower() +
0019               " > output/" + _container.lower() + "_" + _type.lower() + "_" + _type.lower() + ".xml")