Using shared environments

Abstract: With software version 2023, each App has a separate script execution environment. That means, a script can only import Python modules located in the same App and can only use Python modules (wheels) installed in the same App’s scripts/modules folder. This property can be changed by using the shared environment concept described in this How-to Guide.

Why separate script environments are useful

Separate script environments prevent conflicts between Apps. An App is self-contained, i.e. there are no dependencies on Python modules installed in other Apps or in a global script environment. There is no impact on other Apps by installing, uninstalling or updating a module.

In most cases, using the separate script environment in an App is the preferred way.

Use cases for shared environments

Shared environments are useful if

  • Modules (wheels) from external sources shall be installed in a shared folder

    • for keeping the versions synchronized across multiple Apps

    • to apply software security measures before installing

  • Apps are used in a hierarchical fashion, i.e. Apps are implemented using other Apps

How to create a shared environment

Add a key-value pair "environment": <environment_name> to the metainfo.json files of all Apps which you want to share the environment. <environment_name> can be any string, but you are adviced to use a unique name to avoid potential conflicts with other, separate environments. The environment element can be placed at any position within the JSON file.

Example:

App “SharedEnvProvider”

File structure
SharedEnvProvider
|-- scripts
|   |-- modules
|   |   |-- numpy-xyz.whl
|   |
|   |-- SharedEnvProvider.py
|
|-- metainfo.json
SharedEnvProvider/scripts/SharedEnvProvider.py
# -*- coding: utf-8 -*-

import gom

Data = 42

def hello(name):
	print(f"Hello {name}!")

class TestObject:
	def __init__(self, material):
		self.material = material
		
	def print_material(self):
		print(self.material)
SharedEnvProvider/metainfo.json
{
    "author": "Test user",
    "description": "Example for shared environment",
    "environment": "SharedEnv1234",
    "labels": [
    ],
    "licensing": {
        "licenses": [
        ],
        "product-codes": [
        ]
    },
    "software-revision": "735",
    "software-version": "ZEISS INSPECT 2023",
    "tags": [
    ],
    "title": "SharedEnvBase",
    "uuid": "178f89cc-fc62-413f-b692-dbc68bf67ec8",
    "version": "1.0.2"
}

App “SharedEnvUser”

File structure
SharedEnvUser
|-- scripts
|   |-- modules
|   |-- SharedEnvUser.py
|
|-- metainfo.json
SharedEnvUser/scripts/SharedEnvUser.py
# -*- coding: utf-8 -*-

import gom
import SharedEnvProvider

# Importing a package installed in SharedEnvProvider
import numpy as np

# Accessing data in SharedEnvProvider
print(f"Data: {SharedEnvProvider.Data}")

# Calling a function in SharedEnvProvider
SharedEnvProvider.hello("unknown Python programmer")

# Using a class from SharedEnvProvider
testObject = SharedEnvProvider.TestObject("Sheet Metal")
testObject.print_material()

# Using the numpy package from SharedEnvProvider
a = np.array([1, 2, 3, 4, 5, 6])
print(a)
SharedEnvUser/metainfo.json
{
    "title": "SharedEnvUser",
    "...": "...",
    "environment": "SharedEnv1234",
    "...": "..."
}

Note

An App has to be finished (with Finish Editing) before its Python files can be imported as modules in another App, otherwise a ModuleNotFoundError will be thrown.

Using shared environments with protected Apps

Provider App

User App

Description

protected

unprotected

❌ curently not supported

unprotected

protected

✔ no additional measures required

protected

protected

🔑 ‘shared secret’ must be created when applying the protection