pxz
Python API functions
Read time 1 minuteLast updated 19 hours ago
initialization
initialize
Start a new Pixyz session. This step is mandatory before using any SDK features.This function will acquire previously installed license (e.g using core.configureLicenseServer or core.installLicense).
Parameterspxz.initialize(productName=None, validationKey=None, optionalTokenList=None, license=None)
Type | Name | Description |
|---|---|---|
| String | productName | Optional name of the Pixyz product to initialize. Leave empty if using the 'PixyzSDK' product. |
| String | validationKey | Optional validation key linked to the specified product name. Leave empty if no product name was specified. |
| StringList | optionalTokenList | Optional token list for some products using a limited list of features. |
| String | license | Optional license file path to configure the session with. If not specified the session will use a previously installed license using core.configureLicenseServer or core.installLicense. |
release
Terminate the initialized Pixyz session, ensuring memory cleanup and license release. This call is optional, as these steps will automatically occur when the process terminates.See also:pxz.release()