python导入xml文件_python爬虫写入excel

python导入xml文件_python爬虫写入excel最近在使用Testlink时,发现导入的用例是xml格式,且没有合适的工具转成excel格式,xml使用excel打开显示的东西也太多,网上也有相关工具转成csv格式的,结果也不合人意。那求人不如尔己,自己写一个吧需要用到的模块有:xml.dom.minidom(python自带)、xlwt使用版本:python:2.7.5xlwt:1.0.0一、先分析TestlinkXML格式:这是一个有两级…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

最近在使用Testlink时,发现导入的用例是xml格式,且没有合适的工具转成excel格式,xml使用excel打开显示的东西也太多,网上也有相关工具转成csv格式的,结果也不合人意。

那求人不如尔己,自己写一个吧

需要用到的模块有:xml.dom.minidom(python自带)、xlwt

使用版本:

python:2.7.5

xlwt:1.0.0

一、先分析Testlink XML格式:

python导入xml文件_python爬虫写入excel

这是一个有两级testusuit的典型的testlink用例结构,我们只需要取testsuite name,testcase name,preconditions,actions,expectedresults

二、程序如下:

#coding:utf-8

”’

Created on 2015-8-20

@author: Administrator

”’

”’

”’

import xml.etree.cElementTree as ET

import xml.dom.minidom as xx

import os,xlwt,datetime

workbook=xlwt.Workbook(encoding=”utf-8″)

#

booksheet=workbook.add_sheet(u’sheet_1′)

booksheet.col(0).width= 5120

booksheet.col(1).width= 5120

booksheet.col(2).width= 5120

booksheet.col(3).width= 5120

booksheet.col(4).width= 5120

booksheet.col(5).width= 5120

dom=xx.parse(r’D:\\Python27\test.xml’)

root = dom.documentElement

row=1

col=1

borders=xlwt.Borders()

borders.left=1

borders.right=1

borders.top=1

borders.bottom=1

style = xlwt.easyxf(‘align: wrap on,vert centre, horiz center’) #自动换行、水平居中、垂直居中

#设置标题的格式,字体方宋、加粗、背景色:菊黄

#测试项的标题

title=xlwt.easyxf(u’font:name 仿宋,height 240 ,colour_index black, bold on, italic off; align: wrap on, vert centre, horiz center;pattern: pattern solid, fore_colour light_orange;’)

item=’测试项’

Subitem=’测试分项’

CaseTitle=’测试用例标题’

Condition=’预置条件’

actions=’操作步骤’

Result=’预期结果’

booksheet.write(0,0,item,title)

booksheet.write(0,1,Subitem,title)

booksheet.write(0,2,CaseTitle,title)

booksheet.write(0,3,Condition,title)

booksheet.write(0,4,actions,title)

booksheet.write(0,5,Result,title)

#冻结首行

booksheet.panes_frozen=True

booksheet.horz_split_pos= 1

#一级目录

for i in root.childNodes:

testsuite=i.getAttribute(‘name’).strip()

#print testsuite

#print testsuite

”’

写测试项

”’

print “row is :”,row

booksheet.write(row,col,testsuite,style)

#二级目录

for dd in i.childNodes:

print ” %s” % dd.getAttribute(‘name’)

testsuite2=dd.getAttribute(‘name’)

if not dd.getElementsByTagName(‘testcase’):

print “Testcase is %s” % testsuite2

row=row+1

booksheet.write(row,2,testsuite2,style) #写测试分项

row=row+1

booksheet.write(row,1,testsuite2,style)

itemlist=dd.getElementsByTagName(‘testcase’)

for subb in itemlist:

#print ” %s” % subb.getAttribute(‘name’)

testcase=subb.getAttribute(‘name’)

row=row+1

booksheet.write(row,2,testcase,style)

ilist=subb.getElementsByTagName(‘preconditions’)

for ii in ilist:

preconditions=ii.firstChild.data.replace(“
“,” “)

col=col+1

booksheet.write(row,3,preconditions,style)

steplist=subb.getElementsByTagName(‘actions’)

#print steplist

for step in steplist:

actions=step.firstChild.data.replace(“
“,” “)

col=col+1

booksheet.write(row,4,actions,style)

#print “测试步骤:”,steplist[0].firstChild.data.replace(“
“,” “)

expectlist=subb.getElementsByTagName(‘expectedresults’)

for expect in expectlist:

result=expect.childNodes[0].nodeValue.replace(“
“,”” )

booksheet.write(row,5,result,style)

row=row+1

workbook.save(‘demo.xls’)

写入excel的效果如下:

python导入xml文件_python爬虫写入excel

我们再来看个实例:

需要下载一个module:xlwt,如下是source code

import xml.dom.minidom

import xlwt

import sys

col = 0

row = 0

def handle_xml_report(xml_report, excel):

problems = xml_report.getElementsByTagName(“problem”)

handle_problems(problems, excel)

def handle_problems(problems, excel):

for problem in problems:

handle_problem(problem, excel)

def handle_problem(problem, excel):

global row

global col

code = problem.getElementsByTagName(“code”)

file = problem.getElementsByTagName(“file”)

line = problem.getElementsByTagName(“line”)

message = problem.getElementsByTagName(“message”)

for node in code:

excel.write(row, col, node.firstChild.data)

col = col + 1

for node in file:

excel.write(row, col, node.firstChild.data)

col = col + 1

for node in line:

excel.write(row, col, node.firstChild.data)

col = col + 1

for node in message:

excel.write(row, col, node.firstChild.data)

col = col + 1

row = row+1

col = 0

if __name__ == ‘__main__’:

if(len(sys.argv) <= 1):

print (“usage: xml2xls src_file [dst_file]”)

exit(0)

#the 1st argument is XML report ; the 2nd is XLS report

if(len(sys.argv) == 2):

xls_report = sys.argv[1][:-3] + ‘xls’

#if there are more than 2 arguments, only the 1st & 2nd make sense

else:

xls_report = sys.argv[2]

xmldoc = xml.dom.minidom.parse(sys.argv[1])

wb = xlwt.Workbook()

ws = wb.add_sheet(‘MOLint’)

ws.write(row, col, ‘Error Code’)

col = col + 1

ws.write(row, col, ‘file’)

col = col + 1

ws.write(row, col, ‘line’)

col = col + 1

ws.write(row, col, ‘Description’)

row = row + 1

col = 0

handle_xml_report(xmldoc, ws)

wb.save(xls_report)

本文标题: Python实现将xml导入至excel

本文地址: http://www.cppcns.com/jiaoben/python/135334.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/171950.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • vue3 路由传参_vue router传参

    vue3 路由传参_vue router传参前言vue路由传参的使用场景一般都是应用在父路由跳转到子路由时,携带参数跳转。传参方式可划分为params传参和query传参,而params传参又可分为在url中显示参数和不显示参数两种方式,这就是vue路由传参的三种方式。方式一:params传参(显示参数)params传参(显示参数)又可分为声明式和编程式两种方式1、声明式router-link该…

    2022年10月22日
  • 压力测试tps是啥意思_高并发压力测试

    压力测试tps是啥意思_高并发压力测试最近在对代码进行压力测试,这里整理一下压测中的指标和方法。文章目录1压力测试中的指标1.1TPS1.2QPS1.3平均处理时间(RT)1.4并发用户数(并发量)1.5换算关系1.5TPS和QPS的区别2压力测试方法3相关文档1压力测试中的指标1.1TPSTPS即TransactionsPerSecond的缩写,每秒处理的事务数目。一个事务是指一个客户机向服…

  • 用nginx转发请求tomcat 如何配置访问日志获取真实ip

    用nginx转发请求tomcat 如何配置访问日志获取真实ip

  • squid 代理服务器[通俗易懂]

    squid 代理服务器[通俗易懂]squid代理服务器(包括正向代理服务器、反向代理服务器(cdn加速)squid调度器:负载均衡(缓解企业服务器的压力))1.什么是squid代理服务器?Squid是一个高性能的代理缓存服务器,Squid支持FTP、gopher、HTTPS和HTTP协议和一般的代理缓存软件不同,Squid用一个单独的、非模块化的、I/O驱动的进程来处理所有的客户端请求Squid是一种用来缓冲Inter…

  • 【学习强化学习】十三、模仿学习介绍[通俗易懂]

    【学习强化学习】十三、模仿学习介绍[通俗易懂]文章目录参考资料1.模仿学习概述2.行为克隆2.1行为克隆缺点缺点1:观测非常有限缺点2:机器会完全模仿专家的行为缺点3:训练数据跟测试数据不匹配2.逆强化学习2.1概述2.2奖励函数2.2IRLvsGAN3.第三人称视角模仿学习4.练习4.1keywords参考资料https://datawhalechina.github.io/easy-rl/#/chapter11/chapter111.模仿学习概述模仿学习(imitationlearning,IL)又叫做示范学习(

  • Exploring Message Brokers: RabbitMQ, Kafka, ActiveMQ, and Kestrel–reference

    Exploring Message Brokers: RabbitMQ, Kafka, ActiveMQ, and Kestrel–reference

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号