0

以下のようなxml応答を取得しています

<entitlement>
  <externalId></externalId>
  <entitlementAsWhole>false</entitlementAsWhole>
  <eId>1c7fd51c-8f12-46e8-a4b7-f1f9c614df82</eId>
 <entitlementType>PARENT</entitlementType>
 <linkedEntId/>
   <product>
    <productIdentifier>
      <prdExternalId></prdExternalId>
      <productId>7</productId>
      <productNameVersion>
        <productName>test2_porduct</productName>
        <productVersion>1.0.0</productVersion>
      </productNameVersion>
    </productIdentifier>
    <feature>
      <featureIdentifier>
        <ftrExternalId></ftrExternalId>
        <featureId>7</featureId>
        <featureIdentity>null</featureIdentity>
        <ftrNameVersion>
          <featureName>test2_feature</featureName>
          <featureVersion>1.0.0</featureVersion>
        </ftrNameVersion>
      </featureIdentifier>
      <activationAttributes>
    <attributeGroup groupName="LOCKING">
      <attribute>
        <attributeName>CLIENT_1_CRITERIA</attributeName>
        <attributeValue>4</attributeValue>
        <readOnly>true</readOnly>
        <mandatory>false</mandatory>
      </attribute>
      <attribute>
        <attributeName>CLIENT_1_INFO</attributeName>
        <attributeValue></attributeValue>
        <readOnly>false</readOnly>
        <mandatory>true</mandatory>
      </attribute>
    </attributeGroup>
  </activationAttributes>
  <entitlementItemAttributes/>
</Item>
 </productKey>
 <entitlementAttributes/>
</entitlement>

そして、アクティベーション属性のみが以下のようなものを持つ上記のxmlからxmlを取得したい:-

<activationAttributes>
    <attributeGroup groupName="LOCKING">
      <attribute>
        <attributeName>CLIENT_1_CRITERIA</attributeName>
        <attributeValue>4</attributeValue>
        <readOnly>true</readOnly>
        <mandatory>false</mandatory>
      </attribute>
      <attribute>
        <attributeName>CLIENT_1_INFO</attributeName>
        <attributeValue></attributeValue>
        <readOnly>false</readOnly>
        <mandatory>true</mandatory>
      </attribute>
    </attributeGroup>
  </activationAttributes>

resp.txtに元のxmlが含まれている以下のように試しましたが、役に立ちませんでした

activation_attribute = et.fromstring(resp.text).findall('activationAttributes')
4

1 に答える 1

1

を使用find()して要素を 1 つだけ取得してtostring()から、選択した要素の生の XML 表現を取得するために使用します。

from xml.etree import cElementTree as et

.....

root = et.fromstring(resp.text)
activation_attribute = root.find('.//activationAttributes')
print et.tostring(activation_attribute)
于 2016-05-06T09:47:26.623 に答える