A python wrapper package for the lego application written in Golang
Project description
pylego
pylego is a python extension package to utilize the certificate management application Lego written in Golang in python.
Installation
To install this package, all you need to do is run
pip install .
in your preferred Python venv.
Usage
You can import the lego command and run any function that you can run from the CLI:
from pylego import run_lego_command
test_env = {"NAMECHEAP_API_USER": "user", "NAMECHEAP_API_KEY": "key"}
run_lego_command("something@gmail.com", "https://localhost/directory", "-----BEGIN CERTIFICATE REQUEST----- ...", "namecheap", test_env)
Argument | Description |
---|---|
email |
The provided email will be registered to LetsEncrypt. It may receive some emails notifying the user about certificate expiry. |
server |
This is the full URL of a server that implements the ACME protocol. While letsencrypt is the most common one, there are other programs that provide this facility like Vault. |
csr |
This must be a PEM string in bytes that is user generated and valid as according to the ACME server that is being provided above. Many providers have different requirements for what is allowed to be in the fields of the CSR. |
plugin |
The plugin is a string that's supported by LEGO. The full list is located here. On top of the LEGO provided ones, we have an extra plugin called http that will allow users to use HTTP01 and TLSALPN01 challenges. |
env |
The env is a dictionary mapping of strings to strings that will be loaded into the environment for LEGO to use. All plugins require some configuration values loaded into the environment. You can find them here |
On top of the environment variables that LEGO supports, we have some extra ones that we use to configure the library:
Key | Description |
---|---|
SSL_CERT_FILE |
Path to a CA certificate file for pylego to trust. This can be used for trusting the certificate of the ACME server provided. |
HTTP01_IFACE |
The interface to be used for the HTTP01 challenge if the plugin is chosen. Any interface by default. |
HTTP01_PORT |
The port to be used for the HTTP01 challenge if the plugin is chosen. 80 by default. |
TLSALPN01_IFACE |
The interface to be used for the TLSALPN01 challenge if the plugin is chosen. Any interface by default. |
TLSALPN01_PORT |
The port to be used for the TLSALPN01 challenge if the plugin is chosen. 443 by default. |
How does it work?
Golang supports building a shared c library from its CLI build tool. We import and use the LEGO application from GoLang, and provide a stub with C bindings so that the shared C binary we produce exposes a C API for other programs to import and utilize. pylego then uses the ctypes standard library in python to load this binary, and make calls to its methods.
The output binary, lego.so
, is installed alongside pylego, and pylego exposes a python function called run_lego_command that will convert the arguments into a JSON message, and send it to LEGO.
On pip install
, setuptools attempts to build this binary by running the command
go build -o lego.so -buildmode=c-shared lego.go
If we don't have a .whl that supports your environment, you will need to have Go installed and configured for Python to be able to build this binary.
License
The Lego
library used in this project is licensed under the MIT License.
pylego
itself is licensed under the Apache License, Version 2.0.
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
Built Distribution
File details
Details for the file pylego-0.1.0.tar.gz
.
File metadata
- Download URL: pylego-0.1.0.tar.gz
- Upload date:
- Size: 22.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b7f9985b29ec843b7f9e0b2c4a632704235b2b9072824ebca42121538468545 |
|
MD5 | ba72d2ecdea0c598397f8e8d4c5375b4 |
|
BLAKE2b-256 | 558f8880b2dfe1720fefe67cd1be63059a538630341ab298e764eecda63acecc |
File details
Details for the file pylego-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pylego-0.1.0-py3-none-any.whl
- Upload date:
- Size: 44.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9c8c06d7c4b87661e31246fe3dbd47f40685cbd65c27d81c6f0db3ce55b3d7c |
|
MD5 | 02e844baa6a68a45cf37be8d7fff6883 |
|
BLAKE2b-256 | 9fc6b5bf4904bc33ddf45695955734979bcfe1c372283b09b1b6b67f13f465b2 |