Arina.zip | Extended 2026 |
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.
Select all files inside the folder, right-click, and choose "Compress." 4. Implementation Example (Aria Extensibility) arina.zip
Create a ZIP package for Python runtime extensibility actions To ensure your feature is recognized by a
List any external libraries in a requirements.txt file. 2. Install Dependencies Locally arina.zip
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
If this is for an automation action, your main.py should follow a standard entry point format: