XML 格式的 Python 输出

XML 格式的 Python 输出

我有一个 python 脚本,它将 IP 列表与 IP 数据库进行比较并给出匹配条件的输出。 (我从这个论坛得到了脚本)。

转换.py

    #!/usr/bin/python
    import socket,struct
    db=[]
    for l in open("database.txt"):
        fields=l.split();
        db.append((int(fields[0]),int(fields[1]),fields[-2],fields[-1]))

    for l in open("iplist.txt"):
        ip=struct.unpack('!I',socket.inet_aton(l))[0]
        for e in db:
            if e[0]<=ip<=e[1]:
                print l.strip(),e[2],e[3]
                break

输出为 csv 格式,我想要 XML 格式的输出,我使用 AWK 命令实现这一点,

awk -F" " 'BEGIN{print"<markers>"} {printf"<marker information=\"%s\" Longitude=\"%s\" Latitude=\"%s\" />\n",$1,$3,$2} END{print"</markers>"}' mapinfo.csv

我可以使用以下命令将两者结合起来,

./convert.py | awk -F" " 'BEGIN{print"<markers>"} {printf"<marker information=\"%s\" Longitude=\"%s\" Latitude=\"%s\" />\n",$1,$3,$2} END{print"</markers>"}'

有关如何在 python 脚本本身中使用 awk 或以任何其他方式以所需格式显示的任何帮助?

输出:

<markers>
<marker information="168.144.247.215" Longitude="-79.377040" Latitude="43.641233" />
<marker information="169.255.59.2" Longitude="28.043630" Latitude="-26.202270" />
<marker information="173.230.253.193" Longitude="-83.227531" Latitude="42.461234" />
<marker information="173.247.245.154" Longitude="-118.343030" Latitude="34.091104" />
<marker information="174.142.197.90" Longitude="-73.587810" Latitude="45.508840" />
<marker information="175.107.192.78" Longitude="67.082200" Latitude="24.905600" />
</markers>

答案1

此示例假设所有 csv 内容都位于名为 a.csv 的文件中...您可以将其更改为使用stdout stream而不是file stream

出于懒惰,我将经度,纬度作为子元素..你也可以将它们作为属性

 from xml.etree.ElementTree import Element, SubElement, Comment, tostring

top = Element('markers')
f = open('a.csv')
for line in f:
  split_list = line.strip().split(',')
  information_txt = split_list[0]
  longitude_txt = split_list[1]
  latitude_txt = split_list[2]
  marker = SubElement(top, 'marker')
  info = SubElement(marker, 'information')
  info.text = information_txt
  longitude = SubElement(marker, 'longitude')
  longitude.text = longitude_txt
  latitude = SubElement(marker, 'latitude')
  latitude.text = latitude_txt

print tostring(top)

相关内容