gpt4 book ai didi

python:使用元素树处理 XML 项目数组,最好是 "merge"

转载 作者:行者123 更新时间:2023-12-01 03:45:25 25 4
gpt4 key购买 nike

我有一个名为projectDet[]的数组。它包含大约 350 个项目。

数组中的

EACH项是xml信息(下面是单个项)。每个项目的 xml 格式相同,但 id 和值不同。我更喜欢将所有这些放入一个大的 XML 变量中,我可以使用元素树从该变量中提取元素。现在我不知道如何使用元素树来遍历数组中的 300 个项目。

我有代码检查一组不同的 XML 中的 ID,然后如果 XML 数据 A 中的 ID 与 xml 数据 B 中的 ID 匹配,我会取出“计费小时”并将其添加到匹配的最终 CSV 行中身份证号。这适用于不在数组中的其他 XML。所以我觉得最简单的方法是使用我现有的有效代码,但我需要以某种方式将所有这些条目“合并”到一个变量中,以便可以通过管道传输到现有函数中。

有没有一种方法可以循环遍历这个数组并将每个项目合并到一个 xml 中。它们都具有相同的树结构..即 root/team_member/item 和 root/tasks/item

感谢您的建议。

<root>
<team_members type="list">
<item type="dict">
<id>1137</id>
<cost_rate type="float">76.0</cost_rate>
<budget_spent_percentage type="null" />
<projected_hours type="float">0.0</projected_hours>
<user_id type="int">1351480</user_id>
<total_hours type="float">0.0</total_hours>
<name>Bob R</name>
<budget_left type="null" />
</item>
<item type="dict">
<id>1137</id>
<cost_rate type="null" />
<budget_spent_percentage type="null" />
<projected_hours type="float">2072.0</projected_hours>
<user_id type="null" />
<total_hours type="float">0.0</total_hours>
<name>Samm</name>
<budget_left type="null" />
</item>
</team_members>
<nonbillable_detailed_report_url type="str">/reports/detailed/any</nonbillable_detailed_report_url>
<detailed_report_url type="str">/reports/any</detailed_report_url>
<billable_detailed_report_url type="str">/reports/any</billable_detailed_report_url>
<tasks type="list">
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
</tasks>
</root>

最佳答案

考虑使用 append() 追加 <root> 的所有子项迭代地遍历列表。但首先捕获 <root> 的第一个完整元素然后追加:

import xml.etree.ElementTree as ET

cnt = 1
for i in projectDet:
if cnt == 1:
main = ET.fromstring(i)

else:
team = ET.fromstring(i).findall('.//team_members')
main.append(team[0])
nonbill = ET.fromstring(i).findall('.//nonbillable_detailed_report_url')
main.append(nonbill[0])
detrpt = ET.fromstring(i).findall('.//detailed_report_url')
main.append(detrpt[0])
bill = ET.fromstring(i).findall('.//billable_detailed_report_url')
main.append(bill[0])
task = ET.fromstring(i).findall('.//tasks')
main.append(task[0])

cnt+=1

# OUTPUT LARGE XML (main OBJ)
print(ET.tostring(main).decode("UTF-8"))

关于python:使用元素树处理 XML 项目数组,最好是 "merge",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39007027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com