• Python之Windows服务


    1、首先要安装pywin32-220.win-amd64-py2.7.exe

    2、

      SvcDoRun:服务启动的时候会执行的方法
      SvcStop:服务停止的时候会执行的方法
    # coding=utf-8
    import sys
    import logging
    from logging.handlers import RotatingFileHandler
    import datetime
    import os
    import win32serviceutil
    import win32service
    import win32event
    import time
    
    reload(sys)
    sys.setdefaultencoding('utf-8')
    
    
    def log():
        logger = logging.getLogger(__name__)
        logger.setLevel(level=logging.INFO)
      # 必须要指定 sys.path[0] 得到的是这个文件所在的路径  如果不指定就跑到win32所在的路径下了 logPath
    = os.path.join(sys.path[0], 'log') if not os.path.exists(logPath): os.makedirs(logPath) handler = RotatingFileHandler( os.path.join(logPath, '%s.txt' % datetime.date.today()), maxBytes=5 * 1024 * 1024, backupCount=10) handler.setLevel(level=logging.INFO) formatter = logging.Formatter( '%(asctime)s - %(name)s - %(levelname)s - %(message)s') handler.setFormatter(formatter) logger.addHandler(handler) logger.error('error') class PythonService(win32serviceutil.ServiceFramework): # 服务名 _svc_name_ = "WinServiceTest" # 服务显示名称 _svc_display_name_ = "WinServiceTest" # 服务描述 _svc_description_ = "WinServiceTest description" def __init__(self, args): win32serviceutil.ServiceFramework.__init__(self, args) self.hWaitStop = win32event.CreateEvent(None, 0, 0, None) def SvcDoRun(self): while True: # 要加while循环 否则服务只能运行1次 启动服务时有提示 log()
           #死循环 服务停止不了
           if win32event.WaitForSingleObject(self.hWaitStop, 5000) == win32event.WAIT_OBJECT_0:

              break

    def SvcStop(self):
            # 先告诉SCM停止这个过程
            self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
            # 设置事件
            win32event.SetEvent(self.hWaitStop)
    # 必须要加 否则会出现Python could not import the service's module 错误代码1
    if __name__ == '__main__':
        win32serviceutil.HandleCommandLine(PythonService)

    注意点:

      1)if __name__ == '__main__'必须要加,否则会报错

      2)while True也要加,如果只想运行一次可以不加。会有提示,说只运行了1次。

  • 相关阅读:
    高清摄像头MIPI接口与ARM处理器的连接
    How to make apq8084
    DBI接口和DPI接口的区别
    MIPI DSI协议介绍
    LCD显示的一些基本概念以及DSI的一些clock解释
    AXI总线
    SPI,UART,I2C都有什么区别,及其各自的特点
    图像滤镜处理算法:灰度、黑白、底片、浮雕
    用到的一些算法收集
    实用Linux命令,不求最全但求实用-------iptables命令实战
  • 原文地址:https://www.cnblogs.com/zhaoyihao/p/6646223.html
Copyright © 2020-2023  润新知