使用 Python 實作 Windows Service
使用 Python 實作 Windows Service 使用 Python 實作 Windows Service ¶ Using Python Implement Windows Service ¶ Author: Lai Tai-Yu (賴岱佑) Date: 2020/11/26 https://anaconda.org/anaconda/pywin32 基礎架構 ¶ Base Architechture ¶ In [ ]: import win32serviceutil import win32service import win32event import os import logging import inspect class PythonService ( win32serviceutil . ServiceFramework ): # 服務名稱 _svc_name_ = "PythonService" # 服務在 Windows 系統中顯示的名稱 _svc_display_name_ = "Python Service Test" # 服務的描述 _svc_description_ = "This is a python service test code " # PythonService 的 __init__ 函數執行完後,系統服務開始啟動 def __init__ ( self , args ): win32serviceutil . ServiceFramework . __init__ ( self , args ) self . hWaitStop = win32even...