moru-python
Installation
SKILL.md
Moru Python SDK
pip install moru
Quick Start
from moru import Sandbox
with Sandbox.create() as sbx:
sbx.files.write("/app/script.py", "print('Hello from Moru!')")
result = sbx.commands.run("python3 /app/script.py")
print(result.stdout)
# Sandbox auto-killed