A Python client for the Aerol.ai MicroVM sandbox API.
Project description
Aerol.ai MicroVM Python SDK
A lightweight Python SDK for the Aerol.ai MicroVM sandbox API.
Install
pip install aerolvm-sdk
For local development from this repository:
cd sdk/python
pip install .
Usage
from microvm import MicroVM
client = MicroVM(pat_token="${SB_PAT_TOKEN}", api_url="https://sandbox.example.com")
health = client.health()
print(health)
print(health["sshGateway"])
sandbox = client.create(
{
"image": "ghcr.io/aerol-ai/ubuntu:22.04",
"lifecycle": {
"stopIfIdleFor": 3_600_000_000_000,
"destroyAtAge": 86_400_000_000_000,
},
"mounts": [
{
"type": "s3",
"target": "/workspace",
"source": "s3://bucket/prefix",
"credentials": {"access_key_id": "AKIA...", "secret_access_key": "SECRET"},
}
],
}
)
print(sandbox.sshPublicKey)
print(sandbox.sshPrivateKey) # only returned by create()
print(client.mounts(sandbox.id))
sandbox.update_lifecycle(
{
"stopIfIdleFor": 7_200_000_000_000,
"destroyAtAge": 172_800_000_000_000,
}
)
print(sandbox.lifecycle)
Example
python examples/create_sandbox.py --api-url http://127.0.0.1:21212 --pat-token test --image ghcr.io/aerol-ai/ubuntu:22.04
Streaming exec
import sys
handle = sandbox.exec_stream(
{
"command": "bash",
"tty": True,
"cols": 120,
"rows": 40,
"onStdout": lambda chunk: sys.stdout.buffer.write(chunk),
}
)
handle.write("echo hello\n")
result = handle.wait()
print(result)
Sessions
import sys
session = sandbox.create_session(
{
"name": "shell",
"command": "bash",
"workDir": "/workspace",
"pty": True,
"cols": 120,
"rows": 40,
}
)
print(session)
print(sandbox.list_sessions())
print(sandbox.session_log(session["id"]).decode("utf-8"))
handle = sandbox.attach_session(
session["id"],
{
"cols": 120,
"rows": 40,
"onStdout": lambda chunk: sys.stdout.buffer.write(chunk),
}
)
handle.write("echo attached\n")
print(handle.wait())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aerolvm_sdk-0.1.5.tar.gz
(13.8 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 aerolvm_sdk-0.1.5.tar.gz.
File metadata
- Download URL: aerolvm_sdk-0.1.5.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6b8534b3e172cf460a9f37781e4157b122179a0f470f9abe9e725a090fbd7ed
|
|
| MD5 |
aff182ca0b3def20449875e6b0341935
|
|
| BLAKE2b-256 |
96cce020194ad14994ba8eae28b61e33499cded0d3c9d9e7488f3efd6a4e1a9f
|
File details
Details for the file aerolvm_sdk-0.1.5-py3-none-any.whl.
File metadata
- Download URL: aerolvm_sdk-0.1.5-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e56af8fbb9547f6b9e13245c1d944d81960adbd2ba93afd30f55b272222efab3
|
|
| MD5 |
c4f42ceddf2f45b6f46f0045fbca867a
|
|
| BLAKE2b-256 |
c95fb71012a57a7710432fe233d0f20feba66a657ab81ddcc83890cbb28e6b9f
|