mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
eb576d83fb
Didn't test that much, there is still some stuff to do
26 lines
663 B
Python
26 lines
663 B
Python
|
|
from watchdog.events import FileSystemEventHandler
|
|
from watchdog.events import FileSystemEvent
|
|
import psutil
|
|
import os
|
|
import sys
|
|
import logging
|
|
|
|
logger = logging.getLogger('TeleBot')
|
|
|
|
class EventHandler(FileSystemEventHandler):
|
|
def on_any_event(self, event: FileSystemEvent):
|
|
logger.info('* Detected changes in: %s, reloading', (event.src_path))
|
|
restart_file()
|
|
|
|
def restart_file():
|
|
try:
|
|
p = psutil.Process(os.getpid())
|
|
for handler in p.open_files() + p.connections():
|
|
os.close(handler.fd)
|
|
except Exception as e:
|
|
logger.error(e)
|
|
|
|
python = sys.executable
|
|
os.execl(python, python, *sys.argv)
|