Accessibility Templates
Compliance and accessibility audit documents. Structurify provides 1 templates for this category.
Available Templates
| Template | ID | Description |
|---|---|---|
| Web Accessibility Audit (WCAG) | ptpl_accessibility_audit | Identify accessibility issues from website screenshots and documents for WCAG co |
Example Usage
from structurify import Structurify
client = Structurify(api_key="sk_live_xxx")
# Create project with template
project = client.projects.create(
name="My Accessibility Project",
template_id="ptpl_accessibility_audit"
)
# Upload and extract
doc = client.documents.upload(
project_id=project["id"],
file_path="document.pdf"
)
job = client.extraction.run(project_id=project["id"])
result = client.extraction.wait_for_completion(job["id"])
Try It
- Run in Google Colab - Interactive notebooks
- CodeSandbox Examples - Node.js examples