Add imports to load the KqueueObserver on BSD Unix. Update README.md

Signed-off-by: Gora Khargosh <gora.khargosh@gmail.com>
2 files changed
tree: a51ae065792567a26584803f9c4cecba8fc0c7d0
  1. doc/
  2. watchdog/
  3. .gitignore
  4. AUTHORS
  5. bootstrap.py
  6. buildout.cfg
  7. LICENSE
  8. MANIFEST.in
  9. README.md
  10. setup.py
  11. watchmedo
  12. watchmedo.bat
README.md

Watchdog

Python API to monitor file system events.

Example Usage:

Introduction:

Watchdog lets your Python programs monitor filesystem events as portably as possible using:

  • inotify on Linux
  • FSEvents on Mac OS X
  • kqueue on BSD
  • Windows API on Windows
  • polling as a fallback mechanism

Dependencies:

  1. pywin32 (only on Windows)
  2. pyinotify (only on Linux)
  3. XCode or gcc (only on Mac OS X)
  4. PyYAML
  5. argh

Licensing:

Watchdog is licensed under the terms of the MIT License

Copyright (C) 2010 Gora Khargosh <gora.khargosh@gmail.com> and the Watchdog authors.

Project source code on Github