Skip to main content

a11yfy Python SDK

Official Python SDK for the a11yfy PDF accessibility remediation API. Upload a PDF, get back a PDF/UA-compliant, screen-reader-friendly document — with a verifiable compliance certificate.

Installation

pip install a11yfy

Requires Python 3.10+.

Quickstart

from a11yfy import A11yfy

client = A11yfy(token="ak_live_...")  # or set A11YFY_API_KEY env var

result = client.remediate("document.pdf")   # upload + poll + result, one call
print(result.output_url)                    # presigned URL of the remediated PDF
if result.certificate:
    print(result.certificate.download_url)  # compliance certificate PDF
    print(result.certificate.verify_url)    # public verification page

remediate() raises JobFailedError when the job fails and RemediationTimeoutError when the wait budget (default 30 min) elapses — the job keeps running server-side and can still be polled.

Low-level API

job = client.jobs.create_job(file=("doc.pdf", pdf_bytes))
status = client.jobs.get_job(job.job_id)             # pending|processing|done|failed|partial
result = client.jobs.get_job_result(job.job_id)

page = client.jobs.list_jobs(limit=50)               # newest first, cursor pagination
more = client.jobs.list_jobs(cursor=page.next_cursor)

certs = client.certificates.find_certificates(job_id=job.job_id)
certs = client.certificates.find_certificates(output_sha256="<sha256-of-output-pdf>")
pdf_bytes = b"".join(client.certificates.download_certificate(certs.certificates[0].certificate_id))

balance = client.billing.get_balance()
usage = client.billing.get_usage()

Async

from a11yfy import AsyncA11yfy

client = AsyncA11yfy(token="ak_live_...")
result = await client.remediate("document.pdf")

Webhooks

Pass webhook_url to get an HMAC-signed callback when the job finishes, then verify it with the Stripe-style helper:

from a11yfy import Webhook, WebhookVerificationError

@app.post("/a11yfy-webhook")
def handle(request):
    try:
        event = Webhook.construct_event(
            payload=request.body,                                # RAW bytes!
            signature_header=request.headers["X-A11yfy-Signature"],
            secret=os.environ["A11YFY_WEBHOOK_SECRET"],
        )
    except WebhookVerificationError:
        return Response(status=400)
    if event.is_success:
        download(event.output_url)
    return Response(status=200)

Configuration

Option Default Notes
token A11YFY_API_KEY env var ak_live_... / ak_test_...
base_url https://a11yfy.com override for sandbox environments
timeout 60 s per request HTTP timeout
remediate(poll_interval=) 5 s fixed-interval status polling
remediate(timeout=) 1800 s overall wait budget

Duplicate submissions are deduplicated automatically: remediate() sends the file's SHA-256 as Idempotency-Key, so retrying the same file within 24h returns the same job instead of billing twice.

Docs

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

a11yfy-0.2.0.tar.gz (51.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

a11yfy-0.2.0-py3-none-any.whl (80.1 kB view details)

Uploaded Python 3

File details

Details for the file a11yfy-0.2.0.tar.gz.

File metadata

  • Download URL: a11yfy-0.2.0.tar.gz
  • Upload date:
  • Size: 51.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.33 {"installer":{"name":"uv","version":"0.11.33","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for a11yfy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 20c5bceef8967b4b658fbba67872f2a3309616eae318f8a95a543887bf4168a0
MD5 95573a1f0234589f34093559257232fa
BLAKE2b-256 208dbaa4a91bc0d4a93abc18ae8b81fdfd39ee6091ae24d3b7a788598c9a9214

See more details on using hashes here.

File details

Details for the file a11yfy-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: a11yfy-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 80.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.33 {"installer":{"name":"uv","version":"0.11.33","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for a11yfy-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 32c81c452f25e5c98036b18b1d301a546d2055b0a1bd53f5f6081a5c4f0b40dc
MD5 b4778ec330823ed9f7a919694a5f4153
BLAKE2b-256 f752581d5b9eb8052f30d6f8501c9831ff15d13274df7b943f3566a03d92ec21

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.0

2 files

This release

0.2.0 This release

2 files

0.1.0

2 files

0.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page