zoukankan      html  css  js  c++  java
  • 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次。

  • 相关阅读:
    Python 实现红绿灯
    ELK使用1-Elasticsearch使用
    CF Educational Codeforces Round 21
    Codeforces Round #408 (Div. 2)
    2017年 湘潭邀请赛(湖南)or 江苏省赛
    Tinkoff Challenge
    欧几里德算法与扩展欧几里德算法
    operator的各种问题
    树状数组 Playrix Codescapes Cup (Codeforces Round #413, rated, Div. 1 + Div. 2) C. Fountains
    Playrix Codescapes Cup (Codeforces Round #413, rated, Div. 1 + Div. 2) D. Field expansion
  • 原文地址:https://www.cnblogs.com/zhaoyihao/p/6646223.html
Copyright © 2011-2022 走看看