I'm generating SVG drawings using python's svgwrite. Every time I want to draw something, I find myself doing this ugly awkward thing:
line = drawing.line(start = "%dmm" % start, end = "%dmm" % end)
I wish I could just do:
line = drawing.line(start = start, end = end)
Is there a way to set the default units to 'mm' for the entire svg drawing?