Run Python code
Use the runCode
/run_code
method to run Python code inside the sandbox.
import { Sandbox } from '@e2b/code-interpreter'
const sbx = await Sandbox.create()
const execution = await sbx.runCode('print("Hello, world!")')
console.log(execution)