Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Add root node to xml
#3
(Oct-15-2022, 02:26 PM)ndc85430 Wrote: Do you have a question? Why are you manipulating a string, instead of using objects to create the XML (e.g. with xml.etree.ElementTree)?
I Have data frame, but now my code only output


<item>
<A>1</A>
<B>a</B
</item>
<item>
<A>2</A>
<B>b</B>
</item>
<item>
<A>3</A>
<B>c</B>
</item>

But I want to add header and root node so the my output looks like:

<Header>
     <Name></Names>
     <Release><</software>
<Header>

<Values>
<item>
    <A>1</A>
    <B>a</B
</item>
<item>
    <A>2</A>
    <B>b</B>
</item>
<item>
    <A>3</A>
    <B>c</B>
</item>
<Values>
Reply


Messages In This Thread
Add root node to xml - by SriRajesh - Oct-15-2022, 02:20 PM
RE: Add root node to xml - by ndc85430 - Oct-15-2022, 02:26 PM
RE: Add root node to xml - by SriRajesh - Oct-15-2022, 02:29 PM
RE: Add root node to xml - by snippsat - Oct-16-2022, 11:41 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  unable to pass a input after changing the user from root to non root using python avinash 3 3,261 Apr-08-2019, 10:05 AM
Last Post: avinash

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020