Skip to content

Instantly share code, notes, and snippets.

View prasenr's full-sized avatar
🎯
Focusing

Prasen Revankar prasenr

🎯
Focusing
View GitHub Profile
@prasenr
prasenr / watcher.py
Created December 17, 2018 00:48 — forked from ajdavis/watcher.py
Script based on the Python "watchdog" module to run tasks when files change.
#!/usr/bin/env python
import os
import re
import threading
import time
import subprocess
from os.path import splitext, expanduser, normpath
import click