A modern pythonic wrapper around GPG
Requirements:
- At least Python 3.12
- A working GNUPG installation
GPyG can be installed from PyPI with the following command:
python -m pip install gpyg
from gpyg import GPG
with GPG() as gpg:
print(gpg.keys.list_keys())
print(gpg.keys.list_keys()[0].export())
In-depth documentation and the API reference is hosted at https://itecai.github.io/GPyG