Ejemplo n.º 1
0
def core_product_type():
	'''Product type from the license file'''
	return core.BNGetProductType()
Ejemplo n.º 2
0

_destruct_callbacks = _DestructionCallbackHandler()

bundled_plugin_path = core.BNGetBundledPluginDirectory()
user_plugin_path = core.BNGetUserPluginDirectory()

core_version = core.BNGetVersionString()
'''Core version'''

core_build_id = core.BNGetBuildId()
'''Build ID'''

core_serial = core.BNGetSerialNumber()
'''Serial Number'''

core_expires = gmtime(core.BNGetLicenseExpirationTime())
'''License Expiration'''

core_product = core.BNGetProduct()
'''Product string from the license file'''

core_product_type = core.BNGetProductType()
'''Product type from the license file'''

core_license_count = core.BNGetLicenseCount()
'''License count from the license file'''

core_ui_enabled = core.BNIsUIEnabled()
'''Indicates that a UI exists and the UI has invoked BNInitUI'''
Ejemplo n.º 3
0
def core_product_type() -> Optional[str]:
    '''Product type from the license file'''
    return core.BNGetProductType()