mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 13:27:26 +08:00
22 lines
660 B
Python
22 lines
660 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
NoneBot 开发环境重载监视器
|
||
|
"""
|
||
|
import os.path
|
||
|
|
||
|
from liteyuki.dev import observer
|
||
|
from liteyuki import get_bot, logger
|
||
|
from watchdog.events import FileSystemEvent
|
||
|
|
||
|
liteyuki = get_bot()
|
||
|
|
||
|
exclude_extensions = (".pyc", ".pyo")
|
||
|
|
||
|
|
||
|
@observer.on_file_system_event(
|
||
|
directories=("src/nonebot_plugins",),
|
||
|
event_filter=lambda event: not event.src_path.endswith(exclude_extensions) and ("__pycache__" not in event.src_path ) and os.path.isfile(event.src_path)
|
||
|
)
|
||
|
def restart_nonebot_process(event: FileSystemEvent):
|
||
|
logger.debug(f"File {event.src_path} changed, reloading nonebot...")
|
||
|
liteyuki.restart_process("nonebot")
|