Source: inotify-simple
Maintainer: Technology Consulting Group Repostiory Key <tcg@office365stanford.onmicrosoft.com>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-python,
               pybuild-plugin-pyproject,
               python3-all,
               python3-setuptools
Standards-Version: 4.6.2
Homepage: https://github.com/chrisjbillington/inotify_simple

Package: python3-inotify-simple
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: simple Python wrapper around inotify
 inotify-simple is a simple Python wrapper around the Linux inotify(7) API.
 No fancy bells and whistles, just a literal wrapper with ctypes in under
 100 lines of code.
 .
 inotify_init1() is wrapped as a file-like object, INotify(), holding the
 inotify file descriptor. INotify().read() reads available data from the
 file descriptor and returns events as namedtuple objects after unpacking
 them with the struct module. inotify_add_watch() and inotify_rm_watch()
 are wrapped with no changes at all, taking and returning watch descriptor
 integers that calling code is expected to keep track of itself, just as
 one would use inotify from C.
