default
Default Python
Minimal Python 3 microVM. The cheapest cold-start on the platform.
A stock Ubuntu 24.04 rootfs with Python 3.12 and the Podflare agent preinstalled. Boots from a warm snapshot in under 80 ms. Use it when your agent is writing short-lived Python and doesn't need any heavy third-party libraries up front — `pip install` still works from inside the sandbox, it just won't be instant the first time.
from podflare import Sandbox
with Sandbox(template="default") as sbx:
r = sbx.run_code("print(2 + 2)")
print(r.stdout) # '4'template="default"Docs →