Create a ZIP package for Python runtime extensibility actions
To ensure your feature is recognized by a runtime environment, you must place your main logic and its dependencies at the root of the folder before zipping. arina.zip
Knowing the exact platform will help me provide the correct integration steps. Create a ZIP package for Python runtime extensibility
If you are looking to for a ZIP-based project or a similar extensibility action (like those in VMware Aria), here is how you can structure and package it: 1. Structure Your Feature Files Structure Your Feature Files When creating the ZIP,
When creating the ZIP, ensure the files are at the . If you zip the folder itself, the system may fail to find the entry point.
def handler(context, inputs): # Your feature logic here greeting = "Feature Active: " + inputs["name"] return {"status": "success", "message": greeting} Use code with caution. Copied to clipboard
Navigate into the folder and run zip -r ../arina.zip . .