Metadata-Version: 2.4
Name: sealclub
Version: 0.1.0
Summary: Thin Python client for the seal.club PDF sealing API
Project-URL: Homepage, https://seal.club
Author: seal.club
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: pades,pdf,sdk,seal.club,sealclub,signing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# sealclub

Thin Python client for [seal.club](https://seal.club).

```bash
pip install sealclub
export SEAL_API_KEY=sk_test_...
```

```python
from sealclub import SealClub

client = SealClub.from_env()
sealed = client.seal(open("doc.pdf", "rb").read())
open("doc.sealed.pdf", "wb").write(sealed)
```

```bash
sealclub doc.pdf -o doc.sealed.pdf
```

Optional: `SEAL_API_BASE_URL` (default `https://api.seal.club`).
