Edit in GitHubLog an issue

Getting Started with PDF Accessibility Auto-Tag API (Python)

To get started using Adobe PDF Accessibility Auto-Tag API, let's walk through a simple scenario - taking an input PDF document and running PDF Accessibility Auto-Tag API against it. Once the PDF has been tagged, we'll provide the document with tags and optionally, a report file. In this guide, we will walk you through the complete process for creating a program that will accomplish this task.

Prerequisites

To complete this guide, you will need:

  • Python - Python 3.6 or higher is required.
  • An Adobe ID. If you do not have one, the credential setup will walk you through creating one.
  • A way to edit code. No specific editor is required for this guide.

Step One: Getting credentials

1) To begin, open your browser to https://acrobatservices.adobe.com/dc-integration-creation-app-cdn/main.html?api=pdf-accessibility-auto-tag-api. If you are not already logged in to Adobe.com, you will need to sign in or create a new user. Using a personal email account is recommend and not a federated ID.

Sign in

2) After registering or logging in, you will then be asked to name your new credentials. Use the name, "New Project".

3) Change the "Choose language" setting to "Python".

4) Also note the checkbox by, "Create personalized code sample." This will include a large set of samples along with your credentials. These can be helpful for learning more later.

5) Click the checkbox saying you agree to the developer terms and then click "Create credentials."

Project setup

6) After your credentials are created, they are automatically downloaded:

Credentials

Step Two: Setting up the project

1) In your Downloads folder, find the ZIP file with your credentials: PDFServicesSDK-Python (Extract, Auto-tag)Samples.zip. If you unzip that archive, you will find a folder of samples and the pdfservices-api-credentials.json file.

Samples

2) Take the pdfservices-api-credentials.json file and place it in a new directory.

3) At the command line, change to the directory you created, and run the following command to install the Python SDK: pip install pdfservices-sdk.

alt

At this point, we've installed the Python SDK for Adobe PDF Services API as a dependency for our project and have copied over our credentials files.

Our application will take a PDF, Adobe Accesibility Auto-Tag API Sample.pdf (downloadable from here) and tag its contents. The results will be saved in a given directory /output.

4) In your editor, open the directory where you previously copied the credentials. Create a new file, autotag.py.

Now you're ready to begin coding.

Step Three: Creating the application

1) We'll begin by including our required dependencies:

Copied to your clipboard
1from adobe.pdfservices.operation.auth.credentials import Credentials
2from adobe.pdfservices.operation.exception.exceptions import ServiceApiException, ServiceUsageException, SdkException
3from adobe.pdfservices.operation.execution_context import ExecutionContext
4from adobe.pdfservices.operation.io.file_ref import FileRef
5from adobe.pdfservices.operation.pdfops.autotag_pdf_operation import AutotagPDFOperation
6from adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_output import AutotagPDFOutput
7
8import os.path
9from pathlib import Path

The first set of imports bring in the Adobe PDF Accessibility Auto-Tag SDK while the second set will be used by our code later on.

2) Now let's define our input and output:

Copied to your clipboard
1input_pdf = "./Adobe Accessibility Auto-Tag API Sample.pdf"
2
3output_path = "./output/AutotagPDF/"
4
5Path(output_path).mkdir(parents=True, exist_ok=True)
6tagged_pdf_path = f'{output_path}{input_pdf}-tagged.pdf'
7report_path = f'{output_path}{input_pdf}-report.xlsx'

This defines what our output directory will be and optionally deletes it if it already exists. Then we define what PDF will be tagged. (You can download the source we used here.) In a real application, these values would be typically be dynamic.

3) Next, we setup the SDK to use our credentials.

Copied to your clipboard
1# Initial setup, create credentials instance.
2credentials = Credentials.service_principal_credentials_builder() \
3 .with_client_id(os.getenv('PDF_SERVICES_CLIENT_ID')) \
4 .with_client_secret(os.getenv('PDF_SERVICES_CLIENT_SECRET')) \
5 .build()
6
7# Create an ExecutionContext using credentials and create a new operation instance.
8execution_context = ExecutionContext.create(credentials)

This code both points to the credentials downloaded previously as well as sets up an execution context object that will be used later.

4) Now, let's create the operation:

Copied to your clipboard
1autotag_pdf_operation = AutotagPDFOperation.create_new()
2
3# Set operation input from a source file.
4source = FileRef.create_from_local_file(input_pdf)
5autotag_pdf_operation.set_input(source)
6
7# Build AutotagPDF options and set them into the operation
8autotag_pdf_options: AutotagPDFOptions = AutotagPDFOptions.builder() \
9 .with_generate_report() \
10 .build()
11autotag_pdf_operation.set_options(autotag_pdf_options)

This set of code defines what we're doing (an Auto-Tag operation), points to our local file and specifies the input is a PDF, and then defines options for the Auto-Tag call. PDF Accessibility Auto-Tag API has a few different options, but in this example, we're simply asking for a basic tagging operation, which returns the tagged PDF document and an XLSX report of the document.

5) The next code block executes the operation:

Copied to your clipboard
1# Execute the operation.
2autotag_pdf_output: AutotagPDFOutput = autotag_pdf_operation.execute(execution_context)
3
4# Save the result to the specified location.
5autotag_pdf_output.get_tagged_pdf().save_as(tagged_pdf_path)
6autotag_pdf_output.get_report().save_as(report_path)

This code runs the Auto-Tagging process and then stores the result files in the provided output directory.

Here's the complete application (autotag.py):

Copied to your clipboard
1from adobe.pdfservices.operation.auth.credentials import Credentials
2from adobe.pdfservices.operation.exception.exceptions import ServiceApiException, ServiceUsageException, SdkException
3from adobe.pdfservices.operation.execution_context import ExecutionContext
4from adobe.pdfservices.operation.io.file_ref import FileRef
5from adobe.pdfservices.operation.pdfops.autotag_pdf_operation import AutotagPDFOperation
6from adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_output import AutotagPDFOutput
7from adobe.pdfservices.operation.pdfops.options.autotagpdf.autotag_pdf_options import AutotagPDFOptions
8
9import logging
10import os.path
11from pathlib import Path
12
13
14input_pdf = "./Adobe Accessibility Auto-Tag API Sample.pdf"
15
16output_path = "./output/AutotagPDF/"
17
18Path(output_path).mkdir(parents=True, exist_ok=True)
19tagged_pdf_path = f'{output_path}{input_pdf}-tagged.pdf'
20report_path = f'{output_path}{input_pdf}-report.xlsx'
21
22try:
23 # Initial setup, create credentials instance.
24 credentials = Credentials.service_principal_credentials_builder() \
25 .with_client_id(os.getenv('PDF_SERVICES_CLIENT_ID')) \
26 .with_client_secret(os.getenv('PDF_SERVICES_CLIENT_SECRET')) \
27 .build()
28
29 # Create an ExecutionContext using credentials and create a new operation instance.
30 execution_context = ExecutionContext.create(credentials)
31 autotag_pdf_operation = AutotagPDFOperation.create_new()
32
33 # Set operation input from a source file.
34 source = FileRef.create_from_local_file(input_pdf)
35 autotag_pdf_operation.set_input(source)
36
37 # Build AutotagPDF options and set them into the operation
38 autotag_pdf_options: AutotagPDFOptions = AutotagPDFOptions.builder() \
39 .with_generate_report() \
40 .build()
41 autotag_pdf_operation.set_options(autotag_pdf_options)
42
43 # Execute the operation.
44 autotag_pdf_output: AutotagPDFOutput = autotag_pdf_operation.execute(execution_context)
45
46 # Save the result to the specified location.
47 autotag_pdf_output.get_tagged_pdf().save_as(tagged_pdf_path)
48 autotag_pdf_output.get_report().save_as(report_path)
49
50 print("Successfully tagged information in PDF.")
51
52except (ServiceApiException, ServiceUsageException, SdkException) as e:
53 logging.exception(f"Exception encountered while executing operation : {e}")

Next Steps

Now that you've successfully performed your first operation, review the documentation for many other examples and reach out on our forums with any questions. Also remember the samples you downloaded while creating your credentials also have many demos.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.