Python Package for managing keys, request SSL certificates from ACME.
Project description
CertApi
CertApi is a Python package for requesting SSL certificates from ACME. This is to be used as a base library for building other tools, or to integrate Certificate creation feature in you app.
⚠️ Warning: This project is in beta. Please stay tuned for the LTS
v1.0.0release.
Installation
You can install CertApi using pip
pip install certapi
Example: Obtain Certificate with Cloudflare
import json
from certapi import CertApiException, CloudflareChallengeSolver, Key, AcmeCertIssuer
# Initialize the Cloudflare challenge solver
# The API key is read from the CLOUDFLARE_API_KEY environment variable, or you can set it below.
challenge_solver = CloudflareChallengeSolver(api_key=None)
## initialize cert issuer with a new account key
cert_issuer = AcmeCertIssuer(Key.generate('rsa'), challenge_solver)
# Preform setup i.e. fetching directory and registering ACME account
cert_issuer.setup()
try:
# Obtain a certificate for your domain
(key, cert) = cert_issuer.generate_key_and_cert_for_domain("your-domain.com")
print("------ Private Key -----")
print(key.to_pem())
print("------- Certificate ------")
print(cert)
except CertApiException as e:
print(f"An error occurred:", json.dumps(e.json_obj(), indent=2))
Example: Use High Leve API
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-0.4.7.tar.gz.
File metadata
- Download URL: certapi-0.4.7.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d589462094555c45d89f9437baf9ab1a805adc07ed431907f124a364f43e8b0
|
|
| MD5 |
871a22d702c1006815c538a4ebf7235d
|
|
| BLAKE2b-256 |
7a0904114aac2132c10a0470f82bcc1290f8df1cb095e5b84e32b94728f89a8f
|
File details
Details for the file certapi-0.4.7-py3-none-any.whl.
File metadata
- Download URL: certapi-0.4.7-py3-none-any.whl
- Upload date:
- Size: 45.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
918756c7f9569e02ec63192bab8016aeadac6c030250ea409364d4ba3ecdc977
|
|
| MD5 |
f59b0ae8b8e29de26f08a9c587fed51e
|
|
| BLAKE2b-256 |
06fa2245cef7192caad75963be4692f36c0424515fef68fcbee585c5b6be28ba
|