Skip to main content

python gpg bindings

Project description

pipeline status coverage report

gpg python binding (incomplete functionality)

A python gpg module written from scratch.

Installation

From PyPI

It's simple. Just do:

[sudo] pip install [--user] gpg-lite

From git

To install this package from this git repository, do:

git clone https://gitlab.com/biomedit/gpg-lite.git
cd gpg-lite
./setup.py install [--user]

To get started using python-gnupg's API, see the documentation, and import the module like:

import gpg_lite

The primary interface class you'll likely want to interact with is gpg_lite.GPGStore

gpg_store = gpg_lite.GPGStore(config_dir='/home/user/.gnupg')
gpg_store.gen_key(
    key_type='RSA',
    key_length=4096,
    full_name="Chuck Norris",
	email="chuck.norris@roundhouse.gov",
	passphrase="Chuck Norris does not need one - the password needs him")
keys = gpg_store.list_pub_keys()
print(keys)

Note: Make sure that the /home/user/.gnupg directory exists.

Bug Reports & Feature Requests

Our bugtracker can be found on GitLab https://gitlab.com/biomedit/gpg-lite/issues.

Public comments and discussions are also welcome on the bugtracker.

Patches are always welcome.

Supported GPG versions

We officially support all GPG versions starting from v2.2.8. Inofficially, we also try to support v2.0.22.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gpg-lite-0.6.8.tar.gz (28.9 kB view hashes)

Uploaded Source

Built Distribution

gpg_lite-0.6.8-py3-none-any.whl (19.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page