Parsing blank XML tags with LXML and Python

后端 未结 4 1786
自闭症患者
自闭症患者 2021-01-26 12:58

When parsing XML documents in the format of:


    Blue
    Chevy
    Camaro

        
相关标签:
4条回答
  • 2021-01-26 13:43

    I would catch the exception:

    try:
        print parsedCarData[0]['Model']
    except KeyError:
        print 'No model specified'
    

    Exceptions in Python aren't exceptional in the same sense as in other languages, where they are more strictly linked to error conditions. Instead they are frequently part of the normal usage of modules, by design. An iterator raises StopIteration to signal it has reached the end of the iteration, for example.

    Edit: If you're sure only this item can be empty @CharlesDuffy has it right in that using get() is probably better. But in general I'd consider using exceptions for handling diverse exceptional output easily.

    0 讨论(0)
  • 2021-01-26 13:52

    The solution: use a try/except block to catch the key error.

    0 讨论(0)
  • 2021-01-26 13:55

    You're putting in a [text()] filter which explicitly asks only for elements which have text nodes them... and then you're unhappy when it doesn't give you elements without text nodes?

    Leave that filter out, and you'll get your model element:

    >>> s='''
    ... <root>
    ...   <Car>
    ...     <Color>Blue</Color>
    ...     <Make>Chevy</Make>
    ...     <Model/>
    ...   </Car>
    ... </root>'''
    >>> e = lxml.etree.fromstring(s)
    >>> carData = e.xpath('Car/node()')
    >>> carData
    [<Element Color at 0x23a5460>, <Element Make at 0x23a54b0>, <Element Model at 0x23a5500>]
    >>> dict(((e.tag, e.text) for e in carData))
    {'Color': 'Blue', 'Make': 'Chevy', 'Model': None}
    

    That said -- if your immediate goal is to iterate over the nodes in the tree, you might consider using lxml.etree.iterparse() instead, which will avoid trying to build a full DOM tree in memory and otherwise be much more efficient than building a tree and then iterating over it with XPath. (Think SAX, but without the insane and painful API).

    Implementing with iterparse could look like this:

    def get_cars(infile):
        in_car = False
        current_car = {}
        for (event, element) in lxml.etree.iterparse(infile, events=('start', 'end')):
            if event == 'start':
                if element.tag == 'Car':
                    in_car = True
                    current_car = {}
                continue
            if not in_car: continue
            if element.tag == 'Car':
                yield current_car
                continue
            current_car[element.tag] = element.text
    
    for car in get_cars(infile = cStringIO.StringIO('''<root><Car><Color>Blue</Color><Make>Chevy</Make><Model/></Car></root>''')):
      print car
    

    ...it's more code, but (if we weren't using StringIO for the example) it could process a file much larger than could fit in memory.

    0 讨论(0)
  • 2021-01-26 13:58

    I don't know if there's a better solution built inside lxml, but you could just use .get():

    print parsedCarData[0].get('Model', '')
    
    0 讨论(0)
提交回复
热议问题