gpt4 book ai didi

python - xml2csv包错误 '_IterParseIterator'对象没有属性 'next'

转载 作者:行者123 更新时间:2023-11-30 22:50:17 25 4
gpt4 key购买 nike

我正在使用 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 的任何其他方法,这对我也会有帮助。提前致谢。

最佳答案

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

关于python - xml2csv包错误 '_IterParseIterator'对象没有属性 'next',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39449006/

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