Metadata-Version: 2.1
Name: pyfanotify
Version: 0.1.3
Summary: Python wrapper for Linux fanotify
Home-page: https://github.com/baskiton/pyfanotify
Author: Alexander Baskikh
Author-email: baskiton@gmail.com
License: MIT
Project-URL: Source, https://github.com/baskiton/pyfanotify
Project-URL: Bug Tracker, https://github.com/baskiton/pyfanotify/issues
Keywords: linux kernel fanotify
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Operating System Kernels :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pyfanotify
[![PyPI](https://img.shields.io/pypi/v/pyfanotify?logo=python&logoColor=white)][pypi_proj]
[![PyPI - Downloads](https://img.shields.io/pypi/dm/pyfanotify?logo=python&logoColor=white)][pypi_proj]
[![PyPI - License](https://img.shields.io/pypi/l/pyfanotify?logo=open-source-initiative&logoColor=white)](https://github.com/baskiton/pyfanotify/blob/main/LICENSE)

[![build](https://img.shields.io/github/workflow/status/baskiton/pyfanotify/build?logo=github)](https://github.com/baskiton/pyfanotify/actions/workflows/build.yml)
[![upload](https://img.shields.io/github/workflow/status/baskiton/pyfanotify/upload?label=upload&logo=github)](https://github.com/baskiton/pyfanotify/actions/workflows/pypi-upload.yml)
[![docs](https://img.shields.io/readthedocs/pyfanotify?logo=readthedocs&logoColor=white)][documentation]

Python wrapper for Linux fanotify. \
See [fanotify manpage][man_fanotify] for more details.

To detail see the [documentation][documentation]

### IMPORTANT!
`fanotify` requires execution from **ROOT**!

## Requirements
 * Python 3.6+

## Installing
### Using PIP
```sh
$ pip install pyfanotify
```
### From sources
```sh
$ git clone https://github.com/baskiton/pyfanotify.git
$ cd pyfanotify
$ python setup.py install
```

## Usage
See [examples][examples]


[pypi_proj]: https://pypi.org/project/pyfanotify/
[man_fanotify]: https://man7.org/linux/man-pages/man7/fanotify.7.html
[examples]: https://github.com/baskiton/pyfanotify/blob/main/examples
[documentation]: https://pyfanotify.readthedocs.io


