Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python convert xml to dictionary

from xml.etree import cElementTree as ElementTree

class XmlListConfig(list):
    def __init__(self, aList):
        for element in aList:
            if element:
                # treat like dict
                if len(element) == 1 or element[0].tag != element[1].tag:
                    self.append(XmlDictConfig(element))
                # treat like list
                elif element[0].tag == element[1].tag:
                    self.append(XmlListConfig(element))
            elif element.text:
                text = element.text.strip()
                if text:
                    self.append(text)


class XmlDictConfig(dict):
    '''
    Example usage:

    >>> tree = ElementTree.parse('your_file.xml')
    >>> root = tree.getroot()
    >>> xmldict = XmlDictConfig(root)

    Or, if you want to use an XML string:

    >>> root = ElementTree.XML(xml_string)
    >>> xmldict = XmlDictConfig(root)

    And then use xmldict for what it is... a dict.
    '''
    def __init__(self, parent_element):
        if parent_element.items():
            self.update(dict(parent_element.items()))
        for element in parent_element:
            if element:
                # treat like dict - we assume that if the first two tags
                # in a series are different, then they are all different.
                if len(element) == 1 or element[0].tag != element[1].tag:
                    aDict = XmlDictConfig(element)
                # treat like list - we assume that if the first two tags
                # in a series are the same, then the rest are the same.
                else:
                    # here, we put the list in dictionary; the key is the
                    # tag name the list elements all share in common, and
                    # the value is the list itself 
                    aDict = {element[0].tag: XmlListConfig(element)}
                # if the tag has attributes, add those to the dict
                if element.items():
                    aDict.update(dict(element.items()))
                self.update({element.tag: aDict})
            # this assumes that if you've got an attribute in a tag,
            # you won't be having any text. This may or may not be a 
            # good idea -- time will tell. It works for the way we are
            # currently doing XML configuration files...
            elif element.items():
                self.update({element.tag: dict(element.items())})
            # finally, if there are no child tags and no attributes, extract
            # the text
            else:
                self.update({element.tag: element.text})
Comment

PREVIOUS NEXT
Code Example
Python :: phone numbers python 
Python :: enumerate() 
Python :: django add to cart 
Python :: python bubble plot 
Python :: megre pandas in dictionary 
Python :: unlimited arguments 
Python :: import open3d Illegal instruction (core dumped) 
Python :: matplotlib custom legends 
Python :: add colorbar without changing subplot size 
Python :: format json data ipynb 
Python :: how to slice a set in python 
Python :: pd merge_asof 
Python :: python - remove exta space in column 
Python :: show only integer values matplotlib 
Python :: pytorch tensor argmax 
Python :: create a thumbnail from video python 
Python :: spacy shortforms explanation 
Python :: Print and remove previous line 
Python :: __floordiv__ 
Python :: alphabetical 
Python :: drf serializer unique together 
Python :: python selenium element not interactable while headless 
Python :: objects and classes in python 
Python :: s=0 def sum(x,y): n=int(input("enter no. of terms") for i in range(n): l=int(input("enter no.")) s=s+l print(s) sum() 
Python :: python typewriter effect 
Python :: Getting the first element from each list in a column of lists 
Python :: what is fn.call 
Python :: least recently used cache 
Python :: how to create a spark schema using a string 
Python :: python infinite l00p 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =