A simple, asyncio-powered inotify library for Linux. Provides an asynchronous interface to monitor filesystem events. Current version 0.3.1, requires Python >=3.8. Low release cadence (last release 2020).
pip install aionotifyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Sets up an inotify watch on /tmp, prints create and delete events.
Migrate to inotify (https://pypi.org/project/inotify/) or use pyinotify with asyncio wrappers.
Guard imports with sys.platform check or use conditional dependency.
Decode event.name (and related fields) explicitly: event.name.decode('utf-8') if needed.No dependency data recorded yet.