docs

Overview

A sandbox is a real Linux machine you get in a second and destroy when you are done. It bills for as long as it exists. You drive it from the terminal, or from Python — same account, same API key, same origin.

quickstart

Install the CLI with one command:

shell
curl -fsSL https://boltzlabs.john221wick.in/cli/install.sh | sh

Authenticate with a key from your dashboard, then create and connect to a sandbox:

shell
bzlabs auth            # paste an API key
bzlabs create          # pick a machine + environment
bzlabs connect <id|name>  # you are in

The same thing from Python — make a machine, use it, destroy it:

main.py
from boltzlabs import Sandbox

sb = Sandbox()

print(sb.run("print(sum(range(101)))"))   # 5050

sb.delete()