Python SDK for the All-in-One Sandbox API
Project description
Agent Sandbox Python SDK
A Python SDK for the All-in-One Sandbox API, providing access to sandbox, shell, file, jupyter, nodejs, and mcp services.
Installation
pip install agent-sandbox
Usage
from agent_sandbox import Sandbox
client = Sandbox(base_url="http://localhost:8091")
ctx = client.sandbox.get_sandbox_context()
print(ctx)
result = client.shell.exec_command(command="ls -la")
print(result)
Async Support
The SDK also provides async support through the AsyncSandbox class:
import asyncio
from agent_sandbox import AsyncSandbox
async def main():
client = AsyncSandbox(base_url="http://localhost:8091")
# Get sandbox context
ctx = await client.sandbox.get_sandbox_context()
print(ctx)
result = await client.shell.exec_command(command="ls -la")
print(result)
asyncio.run(main())
Features
- Sandbox: Access sandbox environment information and installed packages
- Shell: Execute shell commands with session management
- File: Read, write, search, and manage files
- Jupyter: Execute Python code in Jupyter kernels
- Node.js: Execute JavaScript code in Node.js environment
- MCP: Interact with Model Context Protocol servers
Requirements
- Python 3.8+
- httpx
- pydantic
- typing_extensions (for Python < 3.10)
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
agent_sandbox-0.0.3.tar.gz
(43.2 kB
view details)
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 agent_sandbox-0.0.3.tar.gz.
File metadata
- Download URL: agent_sandbox-0.0.3.tar.gz
- Upload date:
- Size: 43.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b02cb1806720bce3a157f4e1e275084c06a77fb80335013797ab2309f760945c
|
|
| MD5 |
f8883d7d41bdbe8f29632875b58c7460
|
|
| BLAKE2b-256 |
c05fd992b1e664f0ef99eded7b53af5d915610c24574a7b812c90c080543a863
|
File details
Details for the file agent_sandbox-0.0.3-py2.py3-none-any.whl.
File metadata
- Download URL: agent_sandbox-0.0.3-py2.py3-none-any.whl
- Upload date:
- Size: 98.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
413438b2c6508d5c317ca8f5788325ec0608112d90ba86150fc4ce859ed091f3
|
|
| MD5 |
39af390f1bec6898ba3b464a47e73c83
|
|
| BLAKE2b-256 |
ad727688fd974bc8b915c3f73b667a1f9c7bdce99e39a4dd8ab899278357356f
|