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.6.tar.gz
(46.6 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.6.tar.gz.
File metadata
- Download URL: agent_sandbox-0.0.6.tar.gz
- Upload date:
- Size: 46.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0227b49e6ca34ccdb4f0c49383c90fa2e35f33c2710ef585f332d13bcafbf030
|
|
| MD5 |
e7d0ea7a4d4e28f7bed0920d49d98f53
|
|
| BLAKE2b-256 |
257ac3201673a52567ae632ec49813f6a1896733f09855db62ddc5211d7af65f
|
File details
Details for the file agent_sandbox-0.0.6-py2.py3-none-any.whl.
File metadata
- Download URL: agent_sandbox-0.0.6-py2.py3-none-any.whl
- Upload date:
- Size: 109.7 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 |
f575115bdf85e7a889739933c86dd47e5374971dac1029c12c70a8912f8a542a
|
|
| MD5 |
b2fcea4f37378c5cd93954ae297968b8
|
|
| BLAKE2b-256 |
9586dcce8e0354f98895daf737fd30955b2df5ad5e6b113693137fdf2ace0c54
|