Python Wrapper
Python Wrapper for TransPDF API
All of the API is contained within a TransPDF object. To use this in your own programs add the following line:
from transpdf import TransPDF
In the case of errors, each call will raise an exception rather than returning an error condition.
The new calls for version 2 of the API have the suffix '2'. They instruct the server to perform their main tasks in a separate thread and then monitor that task for completion. This is a more robust approach than was available with the previous generation of the API.
Please see the accompanying example Python code - main2.py.
The wrapper required Python version 3.x