- matplotlib allows generation of svgz files, compression rate mor than 90%
- external compression of svg files with gzip -9 worse to extremely worse
- xml.etree.ElementTree allows definition of metadata to svg dataset, but export apparently only to svg, not svgz.
Is there a way in python to add metadata to the xml tree and export it to svgz at the compression rate achieved by matplotlib.pyplot.savefig(..., format='svgz')
?