Skip to main content

'A simple optionally-async python inotify library, focused on simplicity of use and operation, and leveraging modern Python features

Project description

An async python inotify package. Kept as simple and easy-to-understand as possible, while still being flexible and powerful. This is built on no external dependencies, and works through ctypes in a very obvious fashion.

This works without any other external dependencies.

The code is available on GitHub and the documentation is available on ReadTheDocs. The package itself is available on PyPi.

Installation

You know the drill:

pip install asyncinotify

Usage

The core of this package is asyncinotify.Inotify. Most important Classes may be imported directly from the asyncinotify package.

from pathlib import Path
from asyncinotify import Inotify, Mask
import asyncio

async def main():
    # Context manager to close the inotify handle after use
    with Inotify() as inotify:
        # Adding the watch can also be done outside of the context manager.
        # __enter__ doesn't actually do anything except return self.
        # This returns an asyncinotify.inotify.Watch instance
        inotify.add_watch('/tmp', Mask.ACCESS | Mask.MODIFY | Mask.OPEN | Mask.CREATE | Mask.DELETE | Mask.ATTRIB | Mask.CLOSE | Mask.MOVE | Mask.ONLYDIR)
        # Iterate events forever, yielding them one at a time
        async for event in inotify:
            # Events have a helpful __repr__.  They also have a reference to
            # their Watch instance.
            print(event)

            # the contained path may or may not be valid UTF-8.  See the note
            # below
            print(repr(event.path))

asyncio.run(main())

This will asynchronously watch the /tmp directory and report events it encounters.

This library also supports synchronous operation, using the asyncinotify.inotify.Inotify.sync_get` method, or simply using synchronous iteration.

Support

You can examine our testing matrix to see all the hosts that we actively test on.

Additionally, there is consideration and code for the following platforms, though they are not tested by the maintainer of this project:

We regularly remove out-of-support OSes from the tests and add new releases.

We support back to Python 3.6 as long as it remains easy to do so. We may, in some future version, restrict Python support to non-EOL versions, if supporting the older versions becomes inconvenient.

Motivation

There are a few different python inotify packages. Most of them either have odd conventions, expose too much of the underlying C API in a way that I personally don’t like, are badly documented, they work with paths in a non-idiomatic way, are not asynchronous, or are overengineered compared to the API they are wrapping. I find that the last one is true for the majority of them.

I encourage everybody to read the sources of this package. They are quite simple and easy to understand.

This library

  • Works in a very simple way. It does not have many add-ons or extra features beyond presenting a very Python interface to the raw inotify functionality. Any extra features (such as recursive watching) are presented as completely separate classes. The core inotify functionality is as pure as it can reasonably be.

  • Grabs events in bulk and caches them for minor performance gains.

  • Leverages IntFlag for all masks and flags, allowing the user to use the features of IntFlag, such as seeing individual applied flags in the repr, checking for flag set bits with in.

  • Exposes all paths via python’s pathlib

  • Exposes all the functionality of inotify without depending on the user having to interact with any of the underlying mechanics of Inotify. You should never have to touch the inotify or watch descriptors for any reason.

The primary motivation is that this is written to be a Python inotify module that I would feel comfortable using.

License

This code is Copyright 2019 - 2023 Absolute Performance, Inc, and 2024 - 2026 ProCern Technology Solutions.

It is written and maintained by Taylor C. Richberger.

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

Note that this does not have the Exhibit B - “Incompatible With Secondary Licenses” Notice. This software is explicitly compatible with secondary licenses. It is MPL 2.0 to ensure that any improvements and other changes are distributed. We do not want to inhibit nor prohibit its use with other FOSS or proprietary software, regardless of the license. In other words, if you aren’t changing asyncinotify, you can pretty much just use it as a library without worrying, unless your other license is explicitly or implicitly incompatible with it (which should be incredibly uncommon).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncinotify-4.4.2.tar.gz (20.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

asyncinotify-4.4.2-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file asyncinotify-4.4.2.tar.gz.

File metadata

  • Download URL: asyncinotify-4.4.2.tar.gz
  • Upload date:
  • Size: 20.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncinotify-4.4.2.tar.gz
Algorithm Hash digest
SHA256 52ad97aa5332dd78592ab9c64171f2953447d98f9170b9bd440c5d19b17d0416
MD5 5b358978c01f0b1804f69e8ea6caeb88
BLAKE2b-256 b361dad12d6ab325c382675c97efde1b3ff194a0c2c6fe3c5618864cba7dad7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncinotify-4.4.2.tar.gz:

Publisher: publish.yaml on ProCern/asyncinotify

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncinotify-4.4.2-py3-none-any.whl.

File metadata

  • Download URL: asyncinotify-4.4.2-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncinotify-4.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 924798f70121d54b313152ef78791d1a70312937e1a2604c4283672fede9d4f4
MD5 d12ff9488fd029828be8307a1d24c3fb
BLAKE2b-256 300f9c51b9a5fdcf1f82dce3d556839192d6d9d87ea7cac090b82363ebb172ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncinotify-4.4.2-py3-none-any.whl:

Publisher: publish.yaml on ProCern/asyncinotify

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page