python 做服务程序_作为Windows服务的Python程序

下面是我的代码,我正试图变成一个windows服务。您将看到test.py发出的调用,所有这些都是一个写入日志文件(作为测试)的简短脚本。

代码是用来使它成为windows服务的,它做得很好,但是当我运行它时,没有任何东西写入到日志文件中。非常感谢您的帮助。下面是代码:import win32service

import win32serviceutil

import win32api

import win32con

import win32event

import win32evtlogutil

import os, sys, string, time

class aservice(win32serviceutil.ServiceFramework):

_svc_name_ = "MyServiceShortName"

_svc_display_name_ = "A python test"

_svc_description_ = "Writing to a log"

def __init__(self, args):

win32serviceutil.ServiceFramework.__init__(self, args)

self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)

def SvcStop(self):

self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)

win32event.SetEvent(self.hWaitStop)

def SvcDoRun(self):

import servicemanager

servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE,servicemanager.PYS_SERVICE_STARTED,(self._svc_name_, ''))

self.timeout = 1000 #1 seconds

# This is how long the service will wait to run / refresh itself (see script below)

while 1:

# Wait for service stop signal, if I timeout, loop again

rc = win32event.WaitForSingleObject(self.hWaitStop, self.timeout)

# Check to see if self.hWaitStop happened

if rc == win32event.WAIT_OBJECT_0:

# Stop signal encountered

servicemanager.LogInfoMsg("SomeShortNameVersion - STOPPED!") #For Event Log

break

else:

#what to run

try:

file_path = "test.py"

execfile(file_path)

except:

pass

#end of what to run

def ctrlHandler(ctrlType):

return True

if __name__ == '__main__':

win32api.SetConsoleCtrlHandler(ctrlHandler, True)

win32serviceutil.HandleCommandLine(aservice)

编辑:考虑到这一点,我将包含test.py文件的代码,它有不必要的导入,但是如果您单独运行它,它将完成任务。import win32service

import win32serviceutil

import win32api

import win32con

import win32event

import win32evtlogutil

import os

logfile = open("log.txt", "a") #open file to log restart timestamp

logfile.write("\nthat's good!!!!")

logfile.close()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值