Is it possible to define a default value for a missing element in an XML Schema. I have the following snippet:
call this function
def _get_(x): if x is not None: return(x.text) else: # print('Setting Blank') return '' _get_(parent.find('childtag'))