Edit in GitHubLog an issue

Quickstart for 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.10 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 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. Remember that these credential files are important and should be stored safely.

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
1import logging
2import os
3from datetime import datetime
4
5from adobe.pdfservices.operation.auth.service_principal_credentials import ServicePrincipalCredentials
6from adobe.pdfservices.operation.exception.exceptions import ServiceApiException, ServiceUsageException, SdkException
7from adobe.pdfservices.operation.io.cloud_asset import CloudAsset
8from adobe.pdfservices.operation.io.stream_asset import StreamAsset
9from adobe.pdfservices.operation.pdf_services import PDFServices
10from adobe.pdfservices.operation.pdf_services_media_type import PDFServicesMediaType
11from adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job import AutotagPDFJob
12from adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result import AutotagPDFResult

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) Set the environment variables PDF_SERVICES_CLIENT_ID and PDF_SERVICES_CLIENT_SECRET by running the following commands and replacing placeholders YOUR CLIENT ID and YOUR CLIENT SECRET with the credentials present in pdfservices-api-credentials.json file:

  • Windows:

    • set PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
    • set PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>
  • MacOS/Linux:

    • export PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
    • export PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>

3) Next, we can create our credentials and use them:

Copied to your clipboard
1# Initial setup, create credentials instance
2credentials = ServicePrincipalCredentials(
3 client_id=os.getenv('PDF_SERVICES_CLIENT_ID'),
4 client_secret=os.getenv('PDF_SERVICES_CLIENT_SECRET'))
5
6# Creates a PDF Services instance
7pdf_services = PDFServices(credentials=credentials)

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.

4) Now, let's create an asset from source file and upload.

Copied to your clipboard
1file = open('src/resources/autotagPDFInput.pdf', 'rb')
2input_stream = file.read()
3file.close()
4
5# Creates an asset(s) from source file(s) and upload
6input_asset = pdf_services.upload(input_stream=input_stream,
7 mime_type=PDFServicesMediaType.PDF)

5) The next code block creates, submits and gets the job result:

Copied to your clipboard
1# Creates a new job instance
2autotag_pdf_job = AutotagPDFJob(input_asset)
3
4
5# Submit the job and gets the job result
6location = pdf_services.submit(electronic_seal_job)
7pdf_services_response = pdf_services.get_job_result(location, ESealPDFResult)
8
9# Get content from the resulting asset(s)
10result_asset: CloudAsset = pdf_services_response.get_result().get_asset()
11stream_asset: StreamAsset = pdf_services.get_content(result_asset)

6) The next code block saves the result at the specified location:

Copied to your clipboard
1output_file_path = 'output/tagged-pdf.pdf'
2with open(output_file_path, "wb") as file:
3 file.write(stream_asset.get_input_stream())

alt

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

Copied to your clipboard
1# Initialize the logger
2logging.basicConfig(level=logging.INFO)
3
4
5#
6# This sample illustrates how to generate a tagged PDF.
7#
8# Refer to README.md for instructions on how to run the samples.
9#
10class AutoTagPDF:
11 def __init__(self):
12 try:
13 file = open('src/resources/autotagPDFInput.pdf', 'rb')
14 input_stream = file.read()
15 file.close()
16
17 # Initial setup, create credentials instance
18 credentials = ServicePrincipalCredentials(
19 client_id=os.getenv('PDF_SERVICES_CLIENT_ID'),
20 client_secret=os.getenv('PDF_SERVICES_CLIENT_SECRET')
21 )
22
23 # Creates a PDF Services instance
24 pdf_services = PDFServices(credentials=credentials)
25
26 # Creates an asset(s) from source file(s) and upload
27 input_asset = pdf_services.upload(input_stream=input_stream,
28 mime_type=PDFServicesMediaType.PDF)
29
30 # Creates a new job instance
31 autotag_pdf_job = AutotagPDFJob(input_asset)
32
33 # Submit the job and gets the job result
34 location = pdf_services.submit(autotag_pdf_job)
35 pdf_services_response = pdf_services.get_job_result(location, AutotagPDFResult)
36
37 # Get content from the resulting asset(s)
38 result_asset: CloudAsset = pdf_services_response.get_result().get_tagged_pdf()
39 stream_asset: StreamAsset = pdf_services.get_content(result_asset)
40
41 # Creates an output stream and copy stream asset's content to it
42 output_file_path = 'output/tagged-pdf.pdf'
43 with open(output_file_path, "wb") as file:
44 file.write(stream_asset.get_input_stream())
45
46 except (ServiceApiException, ServiceUsageException, SdkException) as e:
47 logging.exception(f'Exception encountered while executing operation: {e}')
48
49
50if __name__ == "__main__":
51 AutoTagPDF()
52

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.