だから、PythonでXMLファイルを処理しようとしています。
私は python 2.1 を使用しているため、minidom を使用しています。3.6 への更新に変更はありません。現在、私はこれを持っています
import xml.dom.minidom as minidom
import socket
print 'Getting the xml file'
# Get the xml contents
file = open('<filepath>')
#print file
# Get the root of the configuration file
print 'Parsing the xml'
procs = minidom.parse(file)
しかし、私はこのエラーが発生しています
何か案が?または、さらに良いことに、独自のパーサーを作成せずに xml を解析する別の方法...