Metadata-Version: 2.4
Name: certmate-sdk
Version: 0.1.0
Summary: Thin Python client for the CertMate REST API
Project-URL: Homepage, https://github.com/fabriziosalmi/certmate
Project-URL: Source, https://github.com/fabriziosalmi/certmate/tree/main/clients/certmate-sdk
Author-email: Fabrizio Salmi <fabrizio.salmi@gmail.com>
License: MIT
Keywords: acme,certificates,certmate,letsencrypt,sdk,tls
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24
Description-Content-Type: text/markdown

# certmate-sdk

A thin, dependency-light Python client for the [CertMate](https://github.com/fabriziosalmi/certmate) REST API.

```python
from certmate import Client

with Client("https://certmate.example.com", token="...") as c:
    job = c.create_certificate("app.example.com", dns_provider="cloudflare", wait=True)
    for cert in c.list_certificates():
        print(cert.domain, cert.days_until_expiry)
    print(c.audit_verify()["ok"])
```

`base_url`/`token` fall back to `CERTMATE_URL` / `CERTMATE_TOKEN`. The only
runtime dependency is `httpx` — no server code, no certbot.
