Python看门狗脚本无法正常运行

时间:2012-05-09 20:04:07

标签: python

我正在尝试使用Python Watchdog来监视目录中的更改。但是,当我尝试运行Quickstart示例时:

import time
from watchdog.observers import Observer
from watchdog.events import LoggingEventHandler

if __name__ == "__main__":
    event_handler = LoggingEventHandler()
    observer = Observer()
    observer.schedule(event_handler, path='.', recursive=True)
    observer.start()
    try:
        while True:
            time.sleep(1)
    except KeyboardInterrupt:
        observer.stop()
    observer.join()

通过输入文件 test.py ,我在运行它的终端窗口中没有显示任何内容。是什么导致这种情况发生,我该如何解决?

1 个答案:

答案 0 :(得分:14)

试试github上的例子:https://github.com/gorakhargosh/watchdog

这个例子似乎与文档网站上没有的例子相反。