简体   繁体   English

python lxml - 修改属性

[英]python lxml - modify attributes

from lxml import objectify, etree

root = etree.fromstring('''<?xml version="1.0" encoding="ISO-8859-1" ?>
<scenario>
<init>
    <send channel="channel-Gy">
        <command name="CER">
            <avp name="Origin-Host" value="router1dev"></avp>
            <avp name="Origin-Realm" value="realm.dev"></avp>
            <avp name="Host-IP-Address" value="0x00010a248921"></avp>
            <avp name="Vendor-Id" value="11"></avp>
            <avp name="Product-Name" value="HP Ro Interface"></avp>
            <avp name="Origin-State-Id" value="1094807040"></avp>
            <avp name="Supported-Vendor-Id" value="10415"></avp>
            <avp name="Auth-Application-Id" value="4"></avp>
            <avp name="Acct-Application-Id" value="0"></avp>
            <avp name="Vendor-Specific-Application-Id">
                <avp name="Vendor-Id" value="11"></avp>
                <avp name="Auth-Application-Id" value="4"></avp>
                <avp name="Acct-Application-Id" value="0"></avp>
            </avp>
            <avp name="Firmware-Revision" value="1"> </avp>
        </command>
    </send>
</init>

<traffic>
    <send channel="channel-Gy" >
        <action>
            <inc-counter name="HbH-counter"></inc-counter>
            ....
        </action>
    </send>
</traffic>
</scenario>''')

How can I modify/set both values? 如何修改/设置这两个值?

  • Host-IP-Address value="0x00010a248921" 主机IP地址值=“0x00010a248921”

  • "Vendor-Id" value="11" “Vendor-Id” 值=“11”

I've unsuccessfully tried accessing 我试图访问失败了

root.xpath("//scenario/init/send_channel/command[@name='CER']/avp[@name='Host-IP-Address']/value/text()")

Goal: I'd preferably like to see a lxml.objectify vs an Xpath solution but I'll accept other lxml based solutions. 目标:我最好希望看到lxml.objectify与Xpath解决方案,但我会接受其他基于lxml的解决方案。

The files are <100kB so speed/RAM is not much of a concern. 这些文件<100kB,因此速度/ RAM并不是很重要。

import lxml.etree as et

tree = et.fromstring('''
... your xml ...
''')

for host_ip in tree.xpath("/scenario/init/send/command[@name='CER']/avp[@name='Host-IP-Address']"):
    host_ip.attrib['value'] = 'foo'

print et.tostring(tree)

You could try this: 你可以试试这个:

r = etree.fromstring('...')

element = r.find('//avp[@name="Host-IP-Address"]')

# Access value
print 'Current value is:', element.get('value')

# change value
element.set('value', 'newvalue')

Also, note that in your example you're using the text() method, but that's not what you want: the "text" of an element is what is enclosed by the element. 另请注意,在您的示例中,您使用的是text()方法,但这不是您想要的:元素的“文本”是元素所包含的内容。 For example, given this: 例如,鉴于此:

<someelement>this is the text</someelement>

The value of the text() method on the <somevalue> element is "this is the text". <somevalue>元素上的text()方法的值是“this is the text”。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM