description='test of svgColourManager: takes SVG maps as argument; should return a the code of a SVG map with superimposed charts, in standard output.')
# positional argument
parser.add_argument(
"infiles",
nargs='+',
help="filenames of the SVG files against which to test svgColourManager.")
args=parser.parse_args()
# -----------------------------------
# Main
# -----------------------------------
forinfileinargs.infiles:
svg=open(infile,'r').read()
#import xml.etree.cElementTree as ET
#tree = ET.ElementTree(ET.fromstring(svg))
# for node in tree.findall('.//{%s}path' % SVG_NS):