Python Forum
looking for sample py to read from txt file into XML using lxml import etree
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
looking for sample py to read from txt file into XML using lxml import etree
#1
sample py to read from txt file into XML using lxml import etree
code is below
from lxml import etree
import csv

root = etree.Element('data')
rdr = open('input1.txt','rb')
header = next(rdr)
for row in rdr:
     eg = etree.SubElement(root, 'eg')
     for h, v in zip(header, row):
         etree.SubElement(eg, h).text = v

f = open(r"C:\temp\input1.xml", "w")
f.write(etree.tostring(root))
f.close()
Reply
#2
Is this meant as a question? A tutorial? Something else?
Reply
#3
i am looking for help to achieve above sample is not working
Reply
#4
looking for sample py to read from txt file into XML using lxml import etree,
i am re-posting as my question was clear in my previous post.
Please help me
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to write variable in a python file then import it in another python file? tatahuft 4 849 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 982 Dec-19-2024, 11:57 AM
Last Post: snippsat
  Read TXT file in Pandas and save to Parquet zinho 2 1,197 Sep-15-2024, 06:14 PM
Last Post: zinho
  import a function from another file using relative path paul18fr 6 2,669 Aug-01-2024, 06:40 AM
Last Post: paul18fr
  Pycharm can't read file Genericgamemaker 5 1,519 Jul-24-2024, 08:10 PM
Last Post: deanhystad
  Python is unable to read file Genericgamemaker 13 3,471 Jul-19-2024, 06:42 PM
Last Post: snippsat
  Connecting to Remote Server to read contents of a file ChaitanyaSharma 1 3,142 May-03-2024, 07:23 AM
Last Post: Pedroski55
  Recommended way to read/create PDF file? Winfried 3 4,533 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,714 Nov-09-2023, 10:56 AM
Last Post: mg24
  read file txt on my pc to telegram bot api Tupa 0 2,515 Jul-06-2023, 01:52 AM
Last Post: Tupa

Forum Jump:

User Panel Messages

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