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.
cli
Create, connect, run and destroy sandboxes from your terminal. Nothing to import, nothing to write.
read ▸
python sdk
Everything the CLI does, as calls — plus RL environment pools, which have no CLI equivalent.
read ▸
quickstart
Install the CLI with one command:
shell
curl -fsSL https://boltzlabs.john221wick.in/cli/install.sh | shAuthenticate 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 inThe 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()