ファイルのセットを監視し、変更に基づいてアクションを実行するWatchdogを使用して、Python でプログラムを作成しています。私は彼らのサイトからの正確な例をファイルに入れました:
import sys
import time
import logging
from watchdog.observers import Observer
from watchdog.events import LoggingEventHandler
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
path = sys.argv[1] if len(sys.argv) > 1 else '.'
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()
すると、おかしなことに気づきました。Python 2 と Python 3 の両方に、同じ方法で ( と を使用pip2 install watchdog
してpip3 install watchdog
) 同時にウォッチドッグをインストールしました。ただし、Python 2 および 3 でプログラムを実行し、それぞれに対して同じ変更を行うと、次のようになります。
$ python2 watch_test.py
2015-09-30 11:18:32 - Modified file: ./watch_test.py
$ python3 watch_test.py
2015-09-30 11:18:39 - Modified file: ./watch_test.py
2015-09-30 11:18:39 - Modified file: ./watch_test.py
2015-09-30 11:18:39 - Modified file: ./watch_test.py
私が疑問に思っているのは、この動作の原因とその修正方法です。
この質問は次の重複ではありません。
- python ウォッチドッグが複数回実行されます。イベントは全部同じ
- Python ウォッチドッグの重複イベント。エラーは Python 3 でのみ発生し、Python 2 では発生しません。