PyXB 读写 XMLdoc
PyXB reading and writing XMLdoc
我正在使用 PyXB
读取和写入 XML
个文件。
当我尝试使用 CreateFromDocument
方法读取 XML
文件并创建 类 时。我收到以下错误。 -
No handlers could be found for logger "pyxb.binding.content"
这是 Python 库中的一个问题。 PyXB 库是为使用日志记录模块而编写的,但它尚未配置,因此会抛出错误。尝试将以下内容添加到您的文件中:
import logging
logging.basicConfig()
我正在使用 PyXB
读取和写入 XML
个文件。
当我尝试使用 CreateFromDocument
方法读取 XML
文件并创建 类 时。我收到以下错误。 -
No handlers could be found for logger "pyxb.binding.content"
这是 Python 库中的一个问题。 PyXB 库是为使用日志记录模块而编写的,但它尚未配置,因此会抛出错误。尝试将以下内容添加到您的文件中:
import logging
logging.basicConfig()