我正在处理stackoverflow转储中的所有帖子。因为它太大了,并且我的任何程序都需要花费很长时间才能运行,所以我想创建一个单独的XML文件,其中仅包含带有我感兴趣的标签的帖子。我正在尝试使用ElementTree来完成此任务任务。 我可以找到所需的帖子,但是将它们写到另一个XML文件时遇到了麻烦。
import xml.etree.ElementTree as ET
if __name__ == '__main__':
posts = ET.Element('data')
row = ER.SubElement(posts, "row")
tree = ET.parse('Posts.xml')
root = tree.getroot()
for child in root:
if child.get('Tags') and 'pytorch' in child.get('Tags') or child.get('Tags') and 'tensorflow' in child.get('Tags') or child.get('Tags') and 'keras' in child.get('Tags'):
ET.SubElement(row, child)
mydata = ET.tostring(posts)
myfile = open("subposts.xml", "w")
myfile.write(mydata)
但是,我得到了错误:
File "/local/mez2113/stackoverflow/create_sub_posts.py", line 13, in <module>
mydata = ET.tostring(posts)
File "/opt/anaconda3/lib/python3.7/xml/etree/ElementTree.py", line 1136, in tostring
short_empty_elements=short_empty_elements)
File "/opt/anaconda3/lib/python3.7/xml/etree/ElementTree.py", line 774, in write
qnames, namespaces = _namespaces(self._root, default_namespace)
File "/opt/anaconda3/lib/python3.7/xml/etree/ElementTree.py", line 886, in _namespaces
_raise_serialization_error(tag)
File "/opt/anaconda3/lib/python3.7/xml/etree/ElementTree.py", line 1058, in _raise_serialization_error
"cannot serialize %r (type %s)" % (text, type(text).__name__)
TypeError: cannot serialize <Element 'row' at 0x7f2b2f9dcf98> (type Element)
原始XML示例:
<posts>
<row Id="6" PostTypeId="1" AcceptedAnswerId="31" CreationDate="2008-07-31T22:08:08.620" Score="261" ViewCount="16799" Body="<p>I have an absolutely positioned <code>div</code> containing several children, one of which is a relatively positioned <code>div</code>. When I use a <strong>percentage-based width</strong> on the child <code>div</code>, it collapses to '0' width on <a href="http://en.wikipedia.org/wiki/Internet_Explorer_7" rel="noreferrer">Internet&nbsp;Explorer&nbsp;7</a>, but not on Firefox or Safari.</p>

<p>If I use <strong>pixel width</strong>, it works. If the parent is relatively positioned, the percentage width on the child works.</p>

<ol>
<li>Is there something I'm missing here?</li>
<li>Is there an easy fix for this besides the <em>pixel-based width</em> on the
child?</li>
<li>Is there an area of the CSS specification that covers this?</li>
</ol>
" OwnerUserId="9" LastEditorUserId="63550" LastEditorDisplayName="Rich B" LastEditDate="2016-03-19T06:05:48.487" LastActivityDate="2018-10-16T16:54:34.953" Title="Percentage width child element in absolutely positioned parent on Internet Explorer 7" Tags="<pytorch><hick><css3><internet-explorer-7>" AnswerCount="6" CommentCount="0" FavoriteCount="12" />
<row Id="6" PostTypeId="1" AcceptedAnswerId="31" CreationDate="2008-07-31T22:08:08.620" Score="261" ViewCount="16799" Body="<p>I have an absolutely positioned <code>div</code> containing several children, one of which is a relatively positioned <code>div</code>. When I use a <strong>percentage-based width</strong> on the child <code>div</code>, it collapses to '0' width on <a href="http://en.wikipedia.org/wiki/Internet_Explorer_7" rel="noreferrer">Internet&nbsp;Explorer&nbsp;7</a>, but not on Firefox or Safari.</p>

<p>If I use <strong>pixel width</strong>, it works. If the parent is relatively positioned, the percentage width on the child works.</p>

<ol>
<li>Is there something I'm missing here?</li>
<li>Is there an easy fix for this besides the <em>pixel-based width</em> on the
child?</li>
<li>Is there an area of the CSS specification that covers this?</li>
</ol>
" OwnerUserId="9" LastEditorUserId="63550" LastEditorDisplayName="Rich B" LastEditDate="2016-03-19T06:05:48.487" LastActivityDate="2018-10-16T16:54:34.953" Title="Percentage width child element in absolutely positioned parent on Internet Explorer 7" Tags="<pytorch><css><css3><internet-explorer-7>" AnswerCount="6" CommentCount="0" FavoriteCount="12" />
</posts>
答案 0 :(得分:0)
感谢您在评论中的所有帮助!
import xml.etree.ElementTree as ET
if __name__ == '__main__':
posts = ET.Element('data')
tree = ET.parse('Sub_posts.xml')
root = tree.getroot()
for child in root:
if child.get('Tags') and 'pytorch' in child.get('Tags') or child.get('Tags') and 'tensorflow' in child.get('Tags') or child.get('Tags') and 'keras' in child.get('Tags'):
posts.append(child)
mydata = ET.tostring(posts).decode()
myfile = open("subposts.xml", "w")
myfile.write(mydata)
替代进行
'Tags'
匹配:
tags1 = set(['pytorch', 'tensorflow', 'keras'])
for child in root:
if tags1 & set([t[1:] for t in child.get('Tags').split('>') if t]):
print('match')