Cree un documento SVG / XML sin espacio de nombres ns0 usando Python ElementTree [duplicado]
Esta pregunta ya tiene una respuesta aquí:
Guardar archivos XML usando ElementTree 4 respuestasEstoy creando un documento SVG con ElementTree en Python 2.7. Aquí está el código:
from xml.etree import ElementTree as etree
root = etree.XML('<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"></svg>')
root.append(etree.Element("path"))
root[0].set("d", "M1 1 L2 2 Z")
print etree.tostring(root, encoding='iso-8859-1')
Esto genera la salida:
<?xml version='1.0' encoding='iso-8859-1'?>
<ns0:svg xmlns:ns0="http://www.w3.org/2000/svg" height="100%" version="1.1" width="100%"><path d="M1 1 L2 2 Z" /></ns0:svg>
Esto no se analiza como SVG válido. ¿Cómo puedo eliminar el espacio de nombres ns0?