OpenSandbox Code Interpreter Python SDK - Advanced code execution with persistent contexts
Project description
OpenSandbox Code Interpreter SDK for Python
English | 中文
A Python SDK for executing code in secure, isolated sandboxes. It provides a high-level API for running Python, Java, Go, TypeScript, and other languages safely, with support for code execution contexts.
Prerequisites
This SDK requires a Docker image containing the Code Interpreter runtime environment. You must use the
opensandbox/code-interpreter image (or a derivative) which includes pre-installed runtimes for Python, Java, Go,
Node.js, etc.
For detailed information about supported languages and versions, refer to the Environment Documentation.
Installation
pip
pip install opensandbox-code-interpreter
uv
uv add opensandbox-code-interpreter
Quick Start
The following example demonstrates how to create a sandbox with a specific runtime configuration and execute a simple script.
import asyncio
from datetime import timedelta
from code_interpreter import CodeInterpreter, SupportedLanguage
from opensandbox import Sandbox
from opensandbox.config import ConnectionConfig
async def main() -> None:
# 1. Configure connection
config = ConnectionConfig(
domain="api.opensandbox.io",
api_key="your-api-key",
request_timeout=timedelta(seconds=60),
)
# 2. Create a Sandbox with the code-interpreter image + runtime versions
sandbox = await Sandbox.create(
"opensandbox/code-interpreter:v1.0.2",
connection_config=config,
entrypoint=["/opt/opensandbox/code-interpreter.sh"],
env={
"PYTHON_VERSION": "3.11",
"JAVA_VERSION": "17",
"NODE_VERSION": "20",
"GO_VERSION": "1.24",
},
)
# 3. Use async context manager to ensure local resources are cleaned up
async with sandbox:
# 4. Create CodeInterpreter wrapper
interpreter = await CodeInterpreter.create(sandbox=sandbox)
# 5. Create an execution context (Python)
context = await interpreter.codes.create_context(SupportedLanguage.PYTHON)
# 6. Run code
result = await interpreter.codes.run(
"import sys\nprint(sys.version)\nresult = 2 + 2\nresult",
context=context,
)
# Alternatively, you can pass a language directly (recommended: SupportedLanguage.*).
# This uses the default context for that language (state can persist across runs).
# result = await interpreter.codes.run("print('hi')", language=SupportedLanguage.PYTHON)
# 7. Print output
if result.result:
print(result.result[0].text)
# 8. Cleanup remote instance (optional but recommended)
await sandbox.kill()
if __name__ == "__main__":
asyncio.run(main())
Synchronous Quick Start
If you prefer a synchronous API, use SandboxSync + CodeInterpreterSync:
from datetime import timedelta
import httpx
from code_interpreter import CodeInterpreterSync
from opensandbox import SandboxSync
from opensandbox.config import ConnectionConfigSync
config = ConnectionConfigSync(
domain="api.opensandbox.io",
api_key="your-api-key",
request_timeout=timedelta(seconds=60),
transport=httpx.HTTPTransport(limits=httpx.Limits(max_connections=20)),
)
sandbox = SandboxSync.create(
"opensandbox/code-interpreter:v1.0.2",
connection_config=config,
entrypoint=["/opt/opensandbox/code-interpreter.sh"],
env={"PYTHON_VERSION": "3.11"},
)
with sandbox:
interpreter = CodeInterpreterSync.create(sandbox=sandbox)
result = interpreter.codes.run("result = 2 + 2\nresult")
if result.result:
print(result.result[0].text)
sandbox.kill()
Installing Python packages at runtime
You can install packages directly via sandbox.commands.run(...):
execution = await sandbox.commands.run("pip install pandas numpy")
Runtime Configuration
Docker Image
The Code Interpreter SDK relies on a specialized environment. Ensure your sandbox provider has the
opensandbox/code-interpreter image available.
Language Version Selection
You can specify the desired version of a programming language by setting the corresponding environment variable when
creating the Sandbox.
| Language | Environment Variable | Example Value | Default (if unset) |
|---|---|---|---|
| Python | PYTHON_VERSION |
3.11 |
Image default |
| Java | JAVA_VERSION |
17 |
Image default |
| Node.js | NODE_VERSION |
20 |
Image default |
| Go | GO_VERSION |
1.24 |
Image default |
Usage Examples
0. Run with language (default language context)
You can pass language directly (recommended: SupportedLanguage.*) and skip create_context.
When context.id is omitted, execd will create/reuse a default session for that language, so
state can persist across runs:
from code_interpreter import SupportedLanguage
execution = await interpreter.codes.run(
"result = 2 + 2\nresult",
language=SupportedLanguage.PYTHON,
)
assert execution.result and execution.result[0].text == "4"
State persistence example (default Python context):
from code_interpreter import SupportedLanguage
await interpreter.codes.run("x = 42", language=SupportedLanguage.PYTHON)
execution = await interpreter.codes.run("result = x\nresult", language=SupportedLanguage.PYTHON)
assert execution.result and execution.result[0].text == "42"
1. Java Code Execution
from code_interpreter import SupportedLanguage
ctx = await interpreter.codes.create_context(SupportedLanguage.JAVA)
execution = await interpreter.codes.run(
(
'System.out.println("Calculating sum...");\n'
+ "int a = 10;\n"
+ "int b = 20;\n"
+ "int sum = a + b;\n"
+ 'System.out.println("Sum: " + sum);\n'
+ "sum"
),
context=ctx,
)
print(execution.id)
for msg in execution.logs.stdout:
print(msg.text)
2. Python with State Persistence
Variables defined in one execution are available in subsequent executions within the same context.
from code_interpreter import SupportedLanguage
ctx = await interpreter.codes.create_context(SupportedLanguage.PYTHON)
await interpreter.codes.run(
"users = ['Alice', 'Bob', 'Charlie']\nprint(len(users))",
context=ctx,
)
result = await interpreter.codes.run(
"users.append('Dave')\nprint(users)\nresult = users\nresult",
context=ctx,
)
3. Streaming Output Handling
Handle stdout/stderr and execution events in real-time.
from opensandbox.models.execd import ExecutionHandlers
from code_interpreter import SupportedLanguage
async def on_stdout(msg):
print("STDOUT:", msg.text)
async def on_stderr(msg):
print("STDERR:", msg.text)
handlers = ExecutionHandlers(on_stdout=on_stdout, on_stderr=on_stderr)
ctx = await interpreter.codes.create_context(SupportedLanguage.PYTHON)
await interpreter.codes.run(
"import time\nfor i in range(5):\n print(i)\n time.sleep(0.5)",
context=ctx,
handlers=handlers,
)
4. Multi-Language Context Isolation
Different languages run in isolated environments.
from code_interpreter import SupportedLanguage
py_ctx = await interpreter.codes.create_context(SupportedLanguage.PYTHON)
go_ctx = await interpreter.codes.create_context(SupportedLanguage.GO)
await interpreter.codes.run("print('Running in Python')", context=py_ctx)
await interpreter.codes.run(
"package main\nfunc main() { println(\"Running in Go\") }",
context=go_ctx,
)
Notes
- Lifecycle:
CodeInterpreterwraps an existingSandboxinstance and reuses its connection configuration. - Asyncio/event loop: avoid sharing long-lived clients across multiple event loops (e.g. pytest-asyncio defaults).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file opensandbox_code_interpreter-0.1.2.tar.gz.
File metadata
- Download URL: opensandbox_code_interpreter-0.1.2.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
046bd3a3a045f9d30ee6691fdd63f4e81db06fd64a8f045d2981ebbc1ebbb244
|
|
| MD5 |
b06b8eeb983b34804aa125de1a479aeb
|
|
| BLAKE2b-256 |
9b8ddc1b3a5eaa89a5780678b91bec2beee3d11d00ed24a5edb0f8dbb4b26a99
|
File details
Details for the file opensandbox_code_interpreter-0.1.2-py3-none-any.whl.
File metadata
- Download URL: opensandbox_code_interpreter-0.1.2-py3-none-any.whl
- Upload date:
- Size: 40.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bea53fb0032f13fae517ac1fed36d972f7f660304029dc3d5eef18a0dac2b916
|
|
| MD5 |
7600b5ac977d512e8dc410073c6ab13c
|
|
| BLAKE2b-256 |
6f0ae20c6eec6f3ac22b3edb59c1cf5ba9327a99933e9071806f54b48a274805
|