https://github.com/cptpcrd/pyseccomp
An interface to libseccomp using ctypes. API compatible with libseccomp's Python bindings.
https://github.com/cptpcrd/pyseccomp
Last synced: 5 months ago
JSON representation
An interface to libseccomp using ctypes. API compatible with libseccomp's Python bindings.
- Host: GitHub
- URL: https://github.com/cptpcrd/pyseccomp
- Owner: cptpcrd
- License: mit
- Created: 2020-10-16T12:45:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T19:38:50.000Z (about 5 years ago)
- Last Synced: 2025-08-31T05:23:38.939Z (10 months ago)
- Language: Python
- Size: 104 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyseccomp
[](https://pypi.org/project/pyseccomp)
[](https://pypi.org/project/pyseccomp)
[](https://github.com/cptpcrd/pyseccomp/actions?query=workflow%3ACI+branch%3Amaster+event%3Apush)
[](https://codecov.io/gh/cptpcrd/pyseccomp)
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:
```python
try:
import seccomp
except ImportError:
import pyseccomp as seccomp
```