How to Install and Uninstall python38-pyinotify Package on openSuSE Tumbleweed

Last updated: May 05,2024

1. Install "python38-pyinotify" package

Here is a brief guide to show you how to install python38-pyinotify on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python38-pyinotify

2. Uninstall "python38-pyinotify" package

This tutorial shows how to uninstall python38-pyinotify on openSuSE Tumbleweed:

$ sudo zypper remove python38-pyinotify

3. Information about the python38-pyinotify package on openSuSE Tumbleweed

Information for package python38-pyinotify:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python38-pyinotify
Version : 0.9.6-4.8
Arch : noarch
Vendor : openSUSE
Installed Size : 262,9 KiB
Installed : No
Status : not installed
Source package : python-pyinotify-0.9.6-4.8.src
Summary : Python module for watching filesystems changes
Description :
pyinotify is a Python module for watching filesystems changes. By its design
pyinotify can be used for any kind of fs monitoring.
pyinotify relies on a recent Linux Kernel feature (merged in kernel 2.6.13)
called inotify. inotify is an event-driven notifier, its notifications are
exported from kernel space to user space. The raw interface of inotify is
compounded of three system calls. pyinotify binds these system calls and
provides an implementation on top of them offering a generic and abstract way
to use inotify with Python. Pyinotify doesn't requires much detailed knowledge
of inotify. Moreover, it only needs few statements for initializing, watching,
handling (eventually trough a new separate thread), and processing events
notifications through subclassing. The only things to know is the path of items
to watch, the kind of events to monitor and the actions to execute on these
notifications.