后台运行Python脚本不断停止

发布于 2024-09-26 09:42:38 字数 221 浏览 6 评论 0原文

我制作了一个 .pyw python 脚本,我想在我的计算机后台运行它。
现在,我通过将其放入 Windows 7 计算机的启动文件夹中来将其设置为启动,这应该会在启动时触发它启动。

问题是该脚本似乎由于某种原因在某个时刻停止运行。我认为当我的计算机进入睡眠状态时它就会停止,并且之后不会再次开始运行。

是否有一种“更正确”的方法来运行后台任务,而不会让它在每次计算机进入睡眠状态时死亡?

I made a .pyw python script that I want to have running in the background of my computer.
Right now I have it set to launch by putting it in the Startup folder of my Windows 7 computer, which should trigger it to launch whenever it starts up.

The problem is that the script seems to stop running at some point for some reason. I think it simply stops when my computer goes to sleep and doesn't start running again afterwards.

Is there a "more correct" way to have a background task running that wouldn't have it die every time the computer goes to sleep?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怕倦 2024-10-03 09:42:38

如果确实需要持续运行的后台进程,您应该考虑创建一个服务。

pywin32 有助于使用 python 创建 NT 服务

如果您喜欢 .NET,您也可以尝试IronPython,但我不知道这是否更容易。

If there really is need for a continuously running background process, you should look into making a service.

pywin32 helps in creating NT services with python

If you're into .NET, you can try also IronPython, but I don't know whether that is more easy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文