To help you quickly explore library and its features, GroupDocs.Conversion provides a Free Trial and a 30-day Temporary License for evaluation, as well as various purchase plans.
Sometimes, to get familiar with the system quickly, you may want to dive into the code right away. To make this easier, GroupDocs.Conversion offers a Free Trial and a 30-day Temporary License for evaluation, along with various purchase plans.
Note
Please note that general policies and practices guide you on evaluating, licensing, and purchasing our products. See the Purchase Policies and FAQ section for details.
Free Trial or Temporary License
You can try GroupDocs.Conversion without purchasing a license.
Free Trial
The evaluation version is identical to the full version — it simply becomes fully licensed when you apply a license. Instructions for setting a license are provided in the following sections.
The evaluation version has the following limitations:
Only the first three pages are processed.
Documents with more than three pages are not supported.
A trial watermark is placed at the top of each page.
Temporary License
If you’d like to test GroupDocs.Conversion without the limitations of the trial version, you can request a 30-day Temporary License. For more information, see the Get a Temporary License page.
Once you’ve obtained a license, follow these instructions to set it up.
A license should be set:
Only once per application, and
Before using any other GroupDocs.Conversion classes.
Tip
Though the license can be set multiple times per application, it is recommended to set it only once, as repeated calls to the set_license method will use unnecessary processing time.
Set Environment Variable
You can set the GROUPDOCS_LIC_PATH environment variable to the absolute path of the license file. GroupDocs.Conversion will then read this value and apply the license.
When you run the application from the my-app folder, GroupDocs.Conversion will check for files with a .lic extension in this folder. It will read the GroupDocs.Conversion.PythonViaNET.lic file to apply the license.
Set License from a File
The following code demonstrates setting a license from a file. The example guards the call with an os.path.exists check so the script fails loudly when the license file is missing instead of raising an opaque runtime error from the .NET layer.
importosfromgroupdocs.conversionimportLicensedefset_license_from_file():# Absolute path to the license filelicense_path=os.path.abspath("./GroupDocs.Conversion.PythonViaNET.lic")ifnotos.path.exists(license_path):print(f"License file not found: {license_path}")print("Place a valid .lic file at that path or set GROUPDOCS_LIC_PATH.")return# Instantiate License and apply the filelicense=License()license.set_license(license_path)print(f"License applied from: {license_path}")if__name__=="__main__":set_license_from_file()
Set License from a Stream
This example shows how to set a license from a stream. Same existence guard — if the .lic file isn’t there, the script exits cleanly with a human-readable message:
importosfromgroupdocs.conversionimportLicensedefset_license_from_stream():# Absolute path to the license filelicense_path=os.path.abspath("./GroupDocs.Conversion.PythonViaNET.lic")ifnotos.path.exists(license_path):print(f"License file not found: {license_path}")print("Place a valid .lic file at that path or set GROUPDOCS_LIC_PATH.")return# Open the license file as a binary stream and apply itwithopen(license_path,"rb")aslicense_stream:license=License()license.set_license(license_stream)print(f"License applied from stream: {license_path}")if__name__=="__main__":set_license_from_stream()
Set Metered License
A Metered License is also available as an alternative to a traditional license file. It is a usage-based licensing model that may be more suitable for customers who prefer to be billed based on actual API feature usage. For more information, refer to the Metered Licensing FAQ.
The following sample demonstrates how to use metered licensing. Replace the placeholder public_key and private_key values with the credentials issued to you — the example guards against the placeholder values and exits with a message if they haven’t been edited:
fromgroupdocs.conversionimportMeteredPLACEHOLDER="******"defset_metered_license():# Set your public and private metered keyspublic_key=PLACEHOLDERprivate_key=PLACEHOLDERifpublic_key==PLACEHOLDERorprivate_key==PLACEHOLDER:print("Metered keys must be set before running this example.")print("Edit public_key and private_key with the credentials from")print("https://purchase.groupdocs.com/ to enable metered licensing.")return# Instantiate Metered and apply the keysmetered=Metered()metered.set_metered_key(public_key,private_key)# Get number of MBs processedmb_processed=metered.get_consumption_quantity()print("MB processed:",mb_processed)# Get number of credits usedcredits_used=metered.get_consumption_credit()print("Credits used:",credits_used)if__name__=="__main__":set_metered_license()
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.
On this page
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.