python实现批处理文件


Posted in Python onJuly 28, 2020

本文实例为大家分享了python实现批处理文件的具体代码,供大家参考,具体内容如下

Windows下的bat, linux 下的shell 用来做批处理都很好用,可惜不通用
用 Python 来做就简单多了,不过一条条写代码来调用系统命令也够烦的了
程序员都很懒, 不愿做机械无谓的重复性工作, 干脆自己实现一个.

用法超级简单, 默认会执行一个自定义的 batch.json, 按顺序一条条执行其中的步骤

{"steps": 
 [
 {"step":"df -h","desc":"display disk space usage"},
 {"step":"date","desc":"display the current dater"},
 {"step":"time","desc":"display the current time"}
 ]
}

用法:

python batch.py

当然也可以指定不同的步骤文件 , 例如

python batch.py xxx.json

运行结果以markdown形式输出, 例如

$ python batch.py
Usage: python batch.py <batch_json_file>
note: execute the batch.json by default
# Execute batch.json begin
---------------------------

## Will execute 3 steps
~~~~~~~~~~~~~~~~~~~~~~~~~~~
0. [df -h]: display disk space usage
1. [date]: display the current dater
2. [time]: display the current time

* 0. [df -h]: display disk space usage
Filesystem       Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk1       233Gi 208Gi 24Gi 90% 54622825 6364694 90% /
devfs        329Ki 329Ki 0Bi 100%  

* 1. [date]: display the current dater
Thu Mar 3 22:50:21 CST 2016

* 2. [time]: display the current time

real 0m0.001s
user 0m0.000s
sys 0m0.000s

## Done the following steps
~~~~~~~~~~~~~~~~~~~~~~~~~~~
0. [df -h]: display disk space usage
1. [date]: display the current dater
# Execute batch.json end.

Python源代码如下, 希望有人能用得上

'''
 like bat file, execute the steps in batch.json 
'''
import os,sys,subprocess
import time,thread
import codecs
import json
from datetime import datetime
from subprocess import call
from pprint import pprint

def execute_json(json_file):
 print "# Execute {0} begin\n---------------------------".format(json_file)

 json_data=open(json_file)
 data = json.load(json_data)
 cnt = len(data['steps'])
 i = 0
 print "\n## Will execute {0} steps \n~~~~~~~~~~~~~~~~~~~~~~~~~~~".format(cnt)
 for i in range(0, cnt):
   print "{0}. [{1}]: {2}".format(i, data['steps'][i]['step'], data['steps'][i]['desc'])

 #pprint(data)
 #print("cnt=", cnt)
 for i in range(0, cnt):
  cmd = data['steps'][i]['step']
  desc = data['steps'][i]['desc']
  print "\n* {0}. [{1}]: {2} ".format(i, cmd, desc)

  if(cmd.startswith('cd')):
   cmd = cmd.replace("cd ", "")
   os.chdir(cmd)
  else:
   ret = os.system(cmd)
   if(ret != 0):
    print "Encounter error of step {0}. {1}, error code={2}".format(i, cmd, ret)
    break

 print "\n## Done the following steps\n~~~~~~~~~~~~~~~~~~~~~~~~~~~"
 for j in range(0, i):
  print "{0}. [{1}]: {2}".format(j, data['steps'][j]['step'], data['steps'][j]['desc']) 
 json_data.close()
 print "# Execute {0} end.".format(json_file)

if __name__ == "__main__":
 argc = len(sys.argv)
 step_file = 'batch.json'
 if( argc > 1):
  idx = 1
  while(idx < argc):
   step_file = sys.argv[idx]
   execute_json(step_file)
   idx = idx + 1
 else:
  print "Usage: python {0} <batch_json_file>".format(sys.argv[0])
  print "note: execute the batch.json by default"
  execute_json(step_file)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python实现把utf-8格式的文件转换成gbk格式的文件
Jan 22 Python
使用Python的PIL模块来进行图片对比
Feb 18 Python
Python cv2 图像自适应灰度直方图均衡化处理方法
Dec 07 Python
python文字转语音的实例代码分析
Nov 12 Python
PyQt5 closeEvent关闭事件退出提示框原理解析
Jan 08 Python
Django Path转换器自定义及正则代码实例
May 29 Python
Python使用socketServer包搭建简易服务器过程详解
Jun 12 Python
Python request中文乱码问题解决方案
Sep 17 Python
详解BeautifulSoup获取特定标签下内容的方法
Dec 07 Python
python 写一个水果忍者游戏
Jan 13 Python
Python .py生成.pyd文件并打包.exe 的注意事项说明
Mar 04 Python
python实现ROA算子边缘检测算法
Apr 05 Python
Python3安装模块报错Microsoft Visual C++ 14.0 is required的解决方法
Jul 28 #Python
python爬虫请求头设置代码
Jul 28 #Python
详解python安装matplotlib库三种失败情况
Jul 28 #Python
最简单的matplotlib安装教程(小白)
Jul 28 #Python
Python 如何实现访问者模式
Jul 28 #Python
Matplotlib 折线图plot()所有用法详解
Jul 28 #Python
matplotlib.pyplot.plot()参数使用详解
Jul 28 #Python
You might like
CentOS安装php v8js教程
2015/02/26 PHP
laravel 5 实现模板主题功能(续)
2015/03/02 PHP
PHP获取当前日期和时间及格式化方法参数
2015/05/11 PHP
php根据一个给定范围和步进生成数组的方法
2015/06/19 PHP
功能强大的PHP POST提交数据类
2016/07/15 PHP
ThinkPHP实现简单登陆功能
2017/04/28 PHP
PHP实现执行外部程序的方法详解
2017/08/17 PHP
Laravel框架中VerifyCsrfToken报错问题的解决
2017/08/30 PHP
纯js实现背景图片切换效果代码
2010/11/14 Javascript
js如何获取file控件的完整路径具体实现代码
2013/05/15 Javascript
jQuery产品间断向下滚动效果核心代码
2014/05/08 Javascript
js实现滑动触屏事件监听的方法
2015/05/05 Javascript
针对初学者的jQuery入门指南
2015/08/15 Javascript
JS DOM实现鼠标滑动图片效果
2020/09/17 Javascript
JS组件Bootstrap Table使用实例分享
2016/05/30 Javascript
Vue实现点击时间获取时间段查询功能
2020/08/21 Javascript
JavaScript函数式编程(Functional Programming)组合函数(Composition)用法分析
2019/05/22 Javascript
解决vue 表格table列求和的问题
2019/11/06 Javascript
Vue实现base64编码图片间的切换功能
2019/12/04 Javascript
[06:42]DOTA2每周TOP10 精彩击杀集锦vol.1
2014/06/25 DOTA
[42:20]Winstrike vs VGJ.S 2018国际邀请赛淘汰赛BO3 第二场 8.23
2018/08/24 DOTA
python实现简单tftp(基于udp协议)
2018/07/30 Python
浅谈django orm 优化
2018/08/18 Python
python根据list重命名文件夹里的所有文件实例
2018/10/25 Python
Python Django Vue 项目创建过程详解
2019/07/29 Python
Python 实现二叉查找树的示例代码
2020/12/21 Python
20佳惊艳的HTML5应用程序示例分享
2011/05/03 HTML / CSS
俄罗斯在线手表和珠宝商店:AllTime
2019/09/28 全球购物
供用电专业求职信
2014/07/07 职场文书
教师个人查摆剖析材料
2014/10/14 职场文书
幼儿园欢迎词范文
2015/01/26 职场文书
死者家属慰问信
2015/03/24 职场文书
六一儿童节园长致辞
2015/07/31 职场文书
2019年手机市场的调研报告2篇
2019/10/10 职场文书
SpringAop日志找不到方法的处理
2021/06/21 Java/Android
Python基于百度AI实现抓取表情包
2021/06/27 Python