1

这是我正在遍历的 XML 树的示例:

<entry dataset="Swiss-Prot" created="1993-07-01+01:00" modified="2013-04-03+01:00" version="144">
  <accession>P31750</accession>
  <accession>Q62274</accession>
  <accession>Q6GSA6</accession>
  <name>AKT1_MOUSE</name>
  <protein>
    <recommendedName>
      <fullName>RAC-alpha serine/threonine-protein kinase</fullName>
      <ecNumber>2.7.11.1</ecNumber>
    </recommendedName>
    <alternativeName>
      <fullName>AKT1 kinase</fullName>
    </alternativeName><alternativeName>
      <fullName>Protein kinase B</fullName>
     ..........

我正在尝试访问,这是我用来访问它recommendedName的当前代码:Python

protein = e.find("{http://uniprot.org/uniprot}protein")
r_names = []
for child in protein.find("recommendedName"):
     for subchild in child.find("fullName"):
          r_names.append(subchild.text)

e在这种情况下表示从<entry></entry>。当我尝试运行此代码时,我从 Python 解释器收到以下错误:

for child in protein.find("recommendedName"):
  TypeError: 'NoneType' object is not iterable

所以它告诉我child这里不是一个可迭代的对象。我真的不明白,因为protein绝对是可迭代的,所以如果finds它应该是可迭代的。无论如何,我将如何使用API来lxml访问孙节点?recommendedNamealternativeName

4

1 回答 1

3
for child in protein.find("recommendedName"):
  TypeError: 'NoneType' object is not iterable

错误消息说protein.find正在返回None。所以没有recommendedName找到元素。

由于您使用命名空间来查找protein,您可能需要使用

for child in protein.find("{http://uniprot.org/uniprot}recommendedName")

或者更好,

for child in protein.xpath("uniprot:recommendedName",
                           namespaces = dict(uniprot='http://uniprot.org/uniprot'))
于 2013-05-03T19:23:05.540 回答