Licensing

Evaluation Version Limitations

Evaluation version of Aspose.Cells Python via .Net product (without a license specified) provides full product functionality, but it is limited to open 100 files in one program and an extra worksheet with evaluation watermark.

The limitations are shown below:

  • Number of Opened Files (Aspose.Cells Python via .Net) When running your program, you can only open 100 Excel files using Aspose.Cells Python via .Net library. If your application exceeds this number, an exception will be thrown.

Moreover, a worksheet with evaluation watermark will always show as the active worksheet in the generated excel file using Aspose.Cells Python via library. Only in licensed version, you can set the active worksheet to other worksheets. In the output PDF or image file by Aspose.Cells Python via, an evaluation watermark would be pasted at the top of the document/image.

Applying a License in Aspose.Cells Python via Component

The license is a plain text XML file that contains details such as the product name, number of developers it is licensed to, subscription expiry date and so on. The file is digitally signed, so don’t modify the file. Even inadvertent addition of an extra line break into the file will invalidate it.You need to set a license before utilizing Aspose.Cells Python via if you want to avoid its evaluation limitation. It is only required to set a license once per application (or process). The license can be loaded from a file.

Aspose.Cells Python via tries to find the license in explicit path locations.

There are two common methods to apply a license from file.

Applying a License from Disk

The easiest way to set a license, is to put the license file in the explicit path.

# Instantiate an instance of license and set the license file through its path

license = License();
# For Windows
license.set_license("D:\Aspose.Cells.lic");
# For Linux or MacOS
license.set_license("/home/yourusername/Aspose.Cells.lic");