runCode/run_code method to run Python code inside the sandbox.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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)
from e2b_code_interpreter import Sandbox
sbx = Sandbox.create()
execution = sbx.run_code('print("Hello, world!")')
print(execution)
Was this page helpful?