2

我正在使用 xmlutils 包将 xml 文件转换为 csv。我的代码如下:

from xmlutils.xml2csv import xml2csv as x
input_path='/media/ishan/Local Disk/doc.xml'
output_path='media/ishan/Local Disk/d.csv'
data=x(input_path,output_path,encoding='utf-8')

上面的代码工作正常。但是当我输入:

data.convert(tag="sku")

它显示以下错误:

AttributeError                            Traceback (most recent call last)
<ipython-input-27-f15935c368f9> in <module>()
----> 1 data.convert(tag="PIES")

/home/ishan/.local/lib/python3.5/site-packages/xmlutils/xml2csv.py in convert(self, tag, delimiter, ignore, noheader, limit, buffer_size, quotes)
 55 
 56                 # get to the root
---> 57                 event, root = self.context.next()
 58 
 59                 items = []

AttributeError: '_IterParseIterator' object has no attribute 'next'

我无法理解我做错了什么。我对这个包裹完全陌生。为什么我收到此错误?如果您可以建议任何其他将 xml 文件转换为 csv 的方法,这对我也有帮助。提前致谢。

4

1 回答 1

7

您可能正在使用 Python 3x,正如此处所述。只需将 xml2csv.py 中的第 57 行从这里更改 event, root = self.context.next() 为: event, root = self.context.__next__()

于 2017-03-12T01:46:39.263 回答