-1

我是新手,有 1 周的 Python 脚本编写经验。

我正在尝试编写一个通用解析器(我未来所有工作的库),它解析任何输入 XML,而无需任何标签的先验知识。

  • 解析输入 XML。
  • 从 XML 中获取值并根据标签设置值。
  • 在工作的其余部分使用这些值。

我正在使用“xml.etree.ElementTree”库,并且能够以下面提到的方式解析 XML。

#!/usr/bin/python

import os
import xml.etree.ElementTree as etree
import logging


logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)

logger.info('start reading XML property file')
filename = "mood_ib_history_parameters_DEV.xml"

logger.info('getting the current location')
__currentlocation__ = os.getcwd()
__fullpath__ = os.path.join(__currentlocation__,filename)

logger.info('start parsing the XML property file')
tree = etree.parse(__fullpath__)
root = tree.getroot()

hive_db = root.find("hive_db").text
EDGE_HIVE_CONN = root.find("EDGE_HIVE_CONN").text
target_dir = root.find("target_dir").text
to_email_alias = root.find("to_email_alias").text
to_email_cc = root.find("to_email_cc").text
from_email_alias = root.find("from_email_alias").text
dburl = root.find("dburl").text
SQOOP_EDGE_CONN = root.find("SQOOP_EDGE_CONN").text
user_name = root.find("user_name").text
password = root.find("password").text
IB_log_table = root.find("IB_log_table").text
SR_DG_master_table = root.find("SR_DG_master_table").text
SR_DG_table = root.find("SR_DG_table").text

logger.info('Hive DB %s', hive_db)
logger.info('Hive DB %s', hive_db)
logger.info('Edge Hive Connection %s', EDGE_HIVE_CONN)
logger.info('Target Directory %s', target_dir)
logger.info('To Email address %s', to_email_alias)
logger.info('CC Email address %s', to_email_cc)
logger.info('From Email address %s', from_email_alias)
logger.info('DB URL %s',dburl)
logger.info('Sqoop Edge node connection %s',SQOOP_EDGE_CONN)
logger.info('Log table name %s',IB_log_table)
logger.info('Master table name %s',SR_DG_master_table)
logger.info('Data governance table name %s',SR_DG_table)

现在的问题是,如果我想在不了解标签和元素的情况下解析 XML 并使用这些值,我该怎么做。我已经阅读了多个教程,但它们都通过使用如下标签帮助我解析 XML

SQOOP_EDGE_CONN = root.find("SQOOP_EDGE_CONN").text

谁能指出我正确的教程或库或代码片段来动态解析 XML。

4

2 回答 2

0

我认为官方文档很清楚,并包含一些示例:https ://docs.python.org/3/library/xml.etree.elementtree.html

您需要实现的主要部分是遍历子节点(可能是递归的):

for child in root:
    # child.tag contains the tag name, child.attrib contains the attributes
    print(child.tag, child.attrib)
于 2016-02-03T07:22:25.107 回答
0

那么解析就这么简单-etree.parse(path)

一旦你掌握了根,tree.getroot()你就可以使用 Python 的“in”来遍历树:

for child_node in tree.getroot():
   print child_node.text

然后,要查看这些 s 具有的标签child_node,您可以使用相同的技巧。这使您可以浏览 XML 中的所有标签,而无需知道标签名称。

于 2016-02-03T07:26:44.190 回答