Some test text!

Search
Hamburger Icon

Core / Guides

Get started with Python2

Welcome to Apryse. Python2 for the Apryse SDK is supported on both Linux and Windows and has precompiled wrappers available. To get started, choose your preferred platform from the tabs below.

Linux Python Pre-compiled PDF library integration

This guide will help you run Apryse samples and integrate a free trial of the Apryse SDK into Python application on Linux. Your free trial includes unlimited trial usage and support from solution engineers.

There are two ways to use Apryse with Python:

  • Use the precompiled library for Python 2.7.
  • Use PDFNet bindings to build your own wrappers.

This guide will help you get started using the precompiled Python wrappers.

Prerequisites

  • Python 2.7.x
Incompatible Python version?
If your version of Python is incompatible with the precompiled wrappers, you can build your own wrapper .
  • Apryse SDK for Linux:

Download the SDK

Download the SDK

Run Apryse SDK in production
A commercial license key is required for use in a production environment. Please fill out our licensing form if you do not have a valid license key.
Keep your commercial license key confidential.
License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).

Initial setup

  1. Download the Python and Ruby prebuilt binaries. Make sure you download the right architecture for your Python interpreter.
  2. Extract via tar xvzf PDFNetWrappersLinux64.tar.gz or tar xvzf PDFNetWrappersLinux32.tar.gz.
  3. Get your Apryse trial key.

Apryse collects some data regarding your usage of the SDK for product improvement.

If you wish to continue without data collection, contact us and we will email you a no-tracking trial key for you to get started.

Run the samples

Run a specific sample

  1. Navigate to the PYTHON folder in the sample, for example /Samples/PYTHON and execute ./RunTest.sh.

Run all samples

  1. To run all tests, navigate to /Samples and execute the runall_python file:
./runall_python.sh

The tests will run one by one.

Output files will be in /Samples/TestFiles/Output

Integrate into your application

This section will show you how to use our SDK to create a simple Apryse "Hello World!" application. It will create a document with one blank page and save it as a linearized PDF in its running directory.

  1. Navigate to the /Samples directory and create a new directory called myApp (if it does not exist already). This guide will assume your application is named myApp. For organization, create a new directory inside myApp called PYTHON.

  2. Navigate inside that PYTHON directory and create a new Python file called myApp.py. Open it with your favorite text editor and paste this into it:

    import site
    # below is the relative path to Apryse PDFNetC libraries
    site.addsitedir("../../../PDFNetC/Lib")
    import sys
    from PDFNetPython import *
    
    def main():
        PDFNet.Initialize("YOUR_APRYSE_LICENSE_KEY")
        doc = PDFDoc()
        page = doc.PageCreate()         # Start a new page
        doc.PagePushBack(page)          # Add the page to the document
        doc.Save("output.pdf", SDFDoc.e_linearized);  # Save the document as a linearized PDF
        print("Hello World!")
    
    if __name__ == '__main__':
        main()
  3. Run your application via python myApp.py. If all goes well your output should read:

    PDFNet is running in demo mode.
    Permission: write
    Hello World!

Check the output.pdf that the program output in the same directory. It should be a PDF with one blank page.

Next step

Guides Samples

Also check out the source for the PDFNetC wrappers.

Troubleshooting

Check the troubleshooting page if you run into any issues going through this document.

Get the answers you need: Chat with us