In [ ]:
from odt_parse import OdtData
from odt_diff import odt_compare
In [ ]:
ref = OdtData('libro_predefinidos.odt')
doc = OdtData('libro_modificado.odt')
In [ ]:
print(odt_compare(ref, doc))
In [ ]:
ref.style
In [ ]:
doc.style
In [ ]: