SDKs - Soft Launch? Trial? Just check it out!

Last week I released two SDKs for our PDF Services, one for Node.js and one for Python. These are initial versions that don’t cover the full range of APIs, but are enough for folks to test them out and see if they’re useful. As an example, here’s a Python call to convert Word to PDF:

import pdf_service_sdk
import os 

CLIENT_ID = os.getenv("CLIENT_ID")
CLIENT_SECRET = os.getenv("CLIENT_SECRET")

sdk = pdf_service_sdk.PDFServiceSDK( client_id=CLIENT_ID,
                                     client_secret=CLIENT_SECRET)

sdk.word_to_pdf(input_path="../../inputfiles/input.docx",output_path="../../output/output_from_sdk.pdf")
print("Conversion completed successfully. Check the output file at ../../output/output_from_sdk.pdf")

I’ve put these up here, developerapidemos/sdktesting at main · foxitsoftware/developerapidemos · GitHub, with the plan to eventually publish them to npm, the appropriate place for Python, etc.