摘要: Linux 工具命令 使用curl测试网络通信 #!/bin/bash cnt_pos=1 while true do echo " the $cnt_pos requet " echo "Start time: "`date +"%Y-%m-%d %H:%M:%S"` t0=`date +%s` 阅读全文
posted @ 2020-09-01 18:48 呓语i 阅读(859) 评论(0) 推荐(0) 编辑
摘要: from xml.dom.minidom import Document # 创建Dom doc = Document() # 创建一个根节点 root = doc.createElement("root") doc.appendChild(root) # 给根节点添加属性 root.setAttr 阅读全文
posted @ 2020-09-01 18:23 呓语i 阅读(290) 评论(0) 推荐(0) 编辑