Documentation
Scripts
Write Python code, run it on demand or on a schedule.
1 Create a Script
Go to Scripts and click New Script.
Give it a name, write your Python code, and save.
2 Run a Script
Click Run to execute. Output appears in real-time.
All runs are saved to history so you can check past outputs anytime.
3 Use Secrets
Access your secrets as environment variables:
import os
api_key = os.environ.get('MY_API_KEY')
print(f"Key loaded: {api_key[:4]}...")