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.1.tar.gz
(31.7 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.1.tar.gz.
File metadata
- Download URL: agent_sandbox-0.0.1.tar.gz
- Upload date:
- Size: 31.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7c7f70b29475a247e1d8e1e9adb0f4ff413d358b182c1d75e0940ed511861fc
|
|
| MD5 |
ed1dd8fc68fd9f2666f84255a442b5a4
|
|
| BLAKE2b-256 |
b29c1ababffc0a4ee632ee26d581b94c255f513d5dfca48b38d333ae13de1662
|
File details
Details for the file agent_sandbox-0.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: agent_sandbox-0.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 59.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 |
a7dfa9dd20d5d4a73858be5c5cd48ccc09c6d2e1c7fd15ec617623080e4f5127
|
|
| MD5 |
c94534e8d5db3b45f0f4c82509cb980e
|
|
| BLAKE2b-256 |
9d731f8fa1333f4ffa5e6104522d35a9054bd865242fc49ceb2477aa209521af
|