Python SDK for the Forme hosted PDF API
Project description
forme
Python SDK for the Forme hosted PDF API.
Installation
pip install formepdf
Quick Start
from formepdf import Forme
client = Forme("forme_sk_...")
# Render a template to PDF bytes
pdf = client.render("invoice", {"customer": "Acme", "total": 100})
with open("invoice.pdf", "wb") as f:
f.write(pdf)
API Reference
Forme(api_key, base_url="https://api.formepdf.com")
Create a client instance.
client.render(slug, data=None, *, s3=None)
Render a template synchronously. Returns bytes (PDF), or a dict with {"url": "..."} when s3 is provided.
# Direct PDF bytes
pdf = client.render("invoice", {"customer": "Acme"})
# Upload to S3
result = client.render("invoice", {"customer": "Acme"}, s3={
"bucket": "my-bucket",
"key": "invoices/001.pdf",
"accessKeyId": "AK...",
"secretAccessKey": "SK...",
})
print(result["url"])
client.render_async(slug, data=None, *, webhook_url=None)
Start an asynchronous render job. Returns {"jobId": "...", "status": "pending"}.
job = client.render_async("report", data, webhook_url="https://example.com/hook")
print(job["jobId"])
client.get_job(job_id)
Poll the status of an async job.
result = client.get_job("job-123")
if result["status"] == "complete":
pdf_b64 = result["pdfBase64"]
client.extract(pdf_bytes)
Extract embedded data from a PDF. Returns the data dict, or None if none is embedded.
data = client.extract(pdf_bytes)
Error Handling
All methods raise FormeError on non-2xx responses:
from formepdf import Forme, FormeError
try:
pdf = client.render("invoice", data)
except FormeError as e:
print(f"Error {e.status}: {e.message}")
Requirements
- Python 3.8+
- No dependencies (stdlib only)
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 formepdf-0.8.3.tar.gz.
File metadata
- Download URL: formepdf-0.8.3.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dec585e58f56f01810e23ccab343cdd8dc8854bab9e2a9f211cf77982bd1889
|
|
| MD5 |
11319aa1e500b191efa6fa97db7e8cf4
|
|
| BLAKE2b-256 |
c82fcd8085e094c641a830e5c43c2d328a79f4b04c8bfe9fcbe993758c52570e
|
File details
Details for the file formepdf-0.8.3-py3-none-any.whl.
File metadata
- Download URL: formepdf-0.8.3-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f047e4c5fb8a6edc4e4510635e6e2fef989ebcc60d0504021bd24cbf1c92ff79
|
|
| MD5 |
712369ed884457dbd82dacedc5328aa3
|
|
| BLAKE2b-256 |
8d6639dd331bb7becc499f3e1ba13d9f0c28efea365d07256da5d8e2eacb9f4d
|