1

To be more specific: Is there a way for a python program to continue running even after it's closed (like automatic open at a certain time)? Or like a gmail notification? This is for an alarm project, and I want it to ring/open itself even if the user closes the window. Is there a way for this to happen/get scripted? If so, how? Any help would be appreciated!

sloth
  • 99,095
  • 21
  • 171
  • 219
Henry
  • 88
  • 1
  • 1
  • 12

2 Answers2

0

You might want to look into daemon processes and cron jobs.

How to start daemon process from python on windows?

How do I get a Cron like scheduler in Python?

Community
  • 1
  • 1
aadarshsg
  • 2,069
  • 16
  • 25
0

Sure you can. You just hide the window without destroying it. It will run for ever until you kill the mainloop itself. Your questing is too broad.

Alex Ivanov
  • 695
  • 4
  • 6