To explore the system effectively, you may want immediate access to the API. GroupDocs.Redaction simplifies this by offering various purchase plans, along with a Free Trial and a 30-day Temporary License for evaluation.
Note
To learn more about licensing options, purchasing, and evaluation policies, refer to the Purchase Policies and FAQ section.
Purchased License
After purchasing GroupDocs.Redaction for Python via .NET, you will receive a license file that unlocks the full functionality of the API. A few rules apply:
Apply the license only once per process, in your start-up code.
Apply it before constructing any Redactor or other GroupDocs.Redaction object.
A license can be applied from a file path, from a binary stream (handy when the license is an embedded resource), or as a Metered License that bills by usage.
Use the set_license method to license the component. Calling it more than once is harmless — it simply wastes a little processor time.
Set a license from a file
The example below applies a license from a file path. It reads the path from the GROUPDOCS_LIC_PATH environment variable and falls back to a local GroupDocs.Redaction.lic file:
importosfromgroupdocs.redactionimportLicensedefset_license_from_file():# Resolve the license path from the environment, with a local fallbacklicense_path=os.environ.get("GROUPDOCS_LIC_PATH","./GroupDocs.Redaction.lic")# Apply the license before using any redaction featuresifos.path.exists(license_path):License().set_license(license_path)print("License set successfully.")else:print("License file not found. Running in evaluation mode.")if__name__=="__main__":set_license_from_file()
Set a license from a stream
You can also apply a license from any readable binary stream — useful when the license ships as an embedded resource:
importosfromgroupdocs.redactionimportLicensedefset_license_from_stream():# Resolve the license path from the environment, with a local fallbacklicense_path=os.environ.get("GROUPDOCS_LIC_PATH","./GroupDocs.Redaction.lic")# Apply the license from an open binary streamifos.path.exists(license_path):withopen(license_path,"rb")asstream:License().set_license(stream)print("License set successfully.")else:print("License file not found. Running in evaluation mode.")if__name__=="__main__":set_license_from_stream()
Set a metered license
A Metered License lets you pay for what you use. Set the public and private keys with set_metered_key before using the API, then query consumption at any time:
fromgroupdocs.redactionimportMetereddefset_metered_license():# Replace these placeholders with your real metered public/private keyspublic_key="*****"private_key="*****"# Skip the call until real keys are supplied (placeholder keys are rejected)if"*"inpublic_keyor"*"inprivate_key:print("Provide real metered keys to enable metered licensing.")return# Apply the metered keys before using any redaction featuresMetered().set_metered_key(public_key,private_key)# Query the current metered consumptionquantity=Metered().get_consumption_quantity()credit=Metered().get_consumption_credit()print(f"Consumption quantity: {quantity}, credit: {credit}")if__name__=="__main__":set_metered_license()
Changing the license file name
You are not required to keep the license file name as GroupDocs.Redaction.lic. You can rename it to any preferred name and use that name when applying the license in your application.
“Cannot find license filename” exception
When you download the license from the GroupDocs website it is saved as GroupDocs.Redaction.lic. However, some web browsers may automatically append .xml, resulting in GroupDocs.Redaction.lic.xml.
If your Windows settings are configured to hide file extensions (the default), the file may still appear as GroupDocs.Redaction.lic in File Explorer even though the actual name is GroupDocs.Redaction.lic.xml. This discrepancy can cause set_license to throw an exception. To fix it, manually rename the file to remove the .xml extension, or disable “Hide extensions for known file types” in Windows.
How to evaluate GroupDocs.Redaction
You can evaluate GroupDocs.Redaction for Python via .NET without purchasing a license by using one of the following options.
Free Trial
The evaluation version is identical to the purchased one; it becomes fully licensed once you set a license. Without a license the Free Trial gives you access to the API’s features, but with some limitations:
Only one document can be opened per process (a subsequent open raises a TrialLimitationsException).
Only one redaction can be applied to the document.
Any redaction is limited to four replacements/deletions, even if there are more matches.
Trial badges are placed at the top of each page of the output document.
Temporary License
To experience the complete features of GroupDocs.Redaction without the limitations of the Free Trial, you can request a 30-day “Temporary 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.