Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 825 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 825 Bytes

pyseccomp

PyPI Python Versions GitHub Actions codecov

An interface to libseccomp using ctypes.

This library is API compatible with libseccomp's Python bindings, but it's available on PyPI and it's written in pure Python.

This is the intended use case:

try:
    import seccomp
except ImportError:
    import pyseccomp as seccomp