Windows 下针对python脚本做一个简单的进程保护
前提:
大家运行的脚本程序经常会碰到系统异常关闭、或被其他用户错杀的情况。这样就需要一个进程保护的工具。
本文结合windows 的计划任务,实现一个简单的进程保护的功能。
- 利用py2exe生产 exe 文件.
py2exe是一个将python脚本转换成windows上的可独立执行的可执行程序(*.exe)的工具,这样,你就可以不用装python而在windows系统上运行这个可执行程序.
下载地址:从http://prdownloads.sourceforge.net/py2exe
创建py2exehelper.py文件 具体代码如下:
__author__ = 'Bruce_Zhou' from distutils.core import setup import py2exe setup(console=['uniquetest.py'],)
创建 uniquetest.py 代码如下:
__author__ = 'Bruce_Zhou' import threading import time import urllib2 import os class CountDownTimer(threading.Thread): def __init__(self, seconds, action): self.runTime = seconds self.action = action super(CountDownTimer, self).__init__() def run(self): counter = self.runTime for sec in range(self.runTime): print counter time.sleep(1.0) counter -= 1 print " Time's up" self.action() def dosomethine(): print "I'm ready" t = CountDownTimer(1800, dosomethine) t.start() if __name__ == "__main__": t = CountDownTimer(10, dosomethine) t.start()