8

I like the concept of watchr: it monitor the file system and run a callback when something changes. Is there a pure Python equivalent? Preferably pip installable.

Bite code
  • 578,959
  • 113
  • 301
  • 329

2 Answers2

5

You should probably look at watchdog:

http://packages.python.org/watchdog/

John Montgomery
  • 8,868
  • 4
  • 33
  • 43
0

For Windows, there's watcher, that is probably close to what you need although I'm not sure it provides 100% equivalent information.

Eli Bendersky
  • 263,248
  • 89
  • 350
  • 412