Title here
Summary here
Follow the steps below to easily create a sandbox.
Create an API Key from this URL https://console.excloud.in/console/api-keys
pip install excloud
from excloud import Client
# Initialize client with your API key
client = Client(api_key="your_api_key_here")
# Create a sandbox
sandbox = client.create()
print(f"Sandbox created: {sandbox.name}")
# Execute commands in the sandbox
result = sandbox.run("python --version")
print(result)
# Clean up
sandbox.destroy()