''' Created on 16/03/2012 @author: cesga ''' import xml.etree.ElementTree as tree def xml_creator(): """ Devuelve un string en xml con el storage que queremos""" top = tree.Element('storage xmlns="http://api.bonfire-project.eu/doc/schemas/occi"') #comment = Comment('Generated for PyMOTW') #top.append(comment) child = tree.SubElement(top, 'name') child.text = 'pruebadata' child = tree.SubElement(top, 'persistent') child.text = 'YES' child = tree.SubElement(top, 'size') child.text = '1024' child = tree.SubElement(top, 'type') child.text = 'DATABLOCK' child = tree.SubElement(top, 'fstype') child.text = 'ext3' return tree. print xml_creator()