-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatcher.py
36 lines (30 loc) · 1.02 KB
/
watcher.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import sys
import time
import subprocess
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
class ChangeHandler(FileSystemEventHandler):
def __init__(self, script):
self.script = script
self.process = None
self.restart_script()
def restart_script(self):
if self.process:
self.process.terminate()
self.process = subprocess.Popen([sys.executable, self.script])
def on_modified(self, event):
if event.src_path.endswith(".py"):
print(f"{event.src_path} has been modified, restarting script...")
self.restart_script()
if __name__ == "__main__":
script_to_watch = "app.py"
event_handler = ChangeHandler(script_to_watch)
observer = Observer()
observer.schedule(event_handler, path=".", recursive=False)
observer.start()
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
observer.stop()
observer.join()