Python Package for managing keys, request SSL certificates from ACME.
Project description
CertApi
Certapi talks with DNS provider and ACME to issue SSL certificates and save it to a keystore.
CertApi is a base library for building other tools, or to integrate Certificate creation feature in your app. CertAPI also provides HTTP api server and can be deployed using Docker
Why another library?
I designed this library so that it can be imported and plugged in to other python projects. Goal is not to provide CLIs or quick working demo, but to be versatile for any use case.
- Pluggable keystores for keys and certificates
- Pluggable Challenge solvers for DNS and Http challenge solving
- High-level manager with renewal checks and multi-solver support
- Same interface for working locally, or requesting certificate from certapi server.
See the developer guide in Developer.md for library usage and workflows.
Installation
You can install CertApi using pip
pip install certapi
CLI
CertApi also ships with a CLI for quick verification and certificate issuance.
## Certapi's dependencies are already included in the python installation. This doesn't affect the system.
sudo python3 -m pip install certapi --break-system-packages
1. With HTTP Challenge
HTTP challenge requires you to have seup the DNS correctly. The ACME server will verify your domain by making an HTTP request.
# Verify environment and HTTP routing
sudo certapi verify example.com www.example.com
# Obtain a certificate (requires root for HTTP-01)
sudo certapi obtain example.com www.example.com
2. With DNS Provider Key
Using DNS-01 challenge with Cloudflare doesn't require the DNS to be setup. Set your Cloudflare API key as an environment variable.
# Set Cloudflare API key or token
export CLOUDFLARE_API_KEY=... # or CLOUDFLARE_API_TOKEN
# Verify DNS configuration
sudo certapi verify example.com
# Obtain a certificate using DNS-01
sudo certapi obtain example.com www.example.com
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file certapi-1.1.1.tar.gz.
File metadata
- Download URL: certapi-1.1.1.tar.gz
- Upload date:
- Size: 52.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9113a00bc2d104b6730395fe8b6c8e2737990b710ff05710dbad79582ed9987
|
|
| MD5 |
afd80b7ff995c05fba5622bf725a661a
|
|
| BLAKE2b-256 |
2ed9aa74034245965c50f1ea3e0dab3128caa19be5b92da5335ba96f4f3d6830
|
File details
Details for the file certapi-1.1.1-py3-none-any.whl.
File metadata
- Download URL: certapi-1.1.1-py3-none-any.whl
- Upload date:
- Size: 54.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1972951e50a5e0cc9ab182d5bb079a9f4b6e2563e70465051f9796d8133aa4a9
|
|
| MD5 |
2bdc4309a422c82362f8405ca273a969
|
|
| BLAKE2b-256 |
2c37eebc49350ca7c72bceffd608f9d56369341bd03e05113b1be4a432df1cb9
|