Я обрабатываю все сообщения из дампа 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>