File: README

package info (click to toggle)
inotifyx 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 128 kB
  • ctags: 126
  • sloc: python: 851; ansic: 229; makefile: 48
file content (20 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
inotifyx is a simple Python binding to the Linux inotify file system event
monitoring API.

Documentation is provided in the module.  To get help, start an interactive
Python session and type:

>>> import inotifyx
>>> help(inotifyx)

You can also test out inotifyx easily.  The following command will print events
for /tmp:

  python -m inotifyx /tmp

Tests can be run via setup.py:

  ./setup.py test

Note that the module must be built and installed for tests to run correctly.
In the future, this requirement will be lifted.