Typed Python SDK for the Islo Web API
Project description
islo
Typed Python SDK for the Islo API.
Install
pip install islo
Usage
from islo import Islo
client = Islo(api_key="sk-...")
# List sandboxes
sandboxes = client.sandboxes.list(limit=20)
# Create a sandbox
from islo.models import SandboxCreate, SandboxSpec
sandbox = client.sandboxes.create(body=SandboxCreate(
name="my-sandbox",
spec=SandboxSpec(cpu=2, memory=4096),
))
# Get a sandbox
sandbox = client.sandboxes.get("my-sandbox")
# Execute a command
from islo.models import ExecRequest
result = client.sandboxes.exec("my-sandbox", body=ExecRequest(
command=["echo", "hello"],
))
# Delete
client.sandboxes.delete("my-sandbox")
Resources
| Resource | Methods |
|---|---|
client.sandboxes |
list, create, get, delete, stop, exec, exec_stream, promote_cache, list_agent_sessions, get_agent_session_events, list_exec_sessions, get_exec_session_logs |
client.tenants |
list, create, get_settings, update_settings, get_subscription |
client.users |
get, invite, update, authorize |
client.shares |
list, create, revoke |
client.integrations |
list, list_providers, get_status, disconnect |
client.usage |
sandbox_usage, summary |
client.certificate_authority |
create_certificate, get_public_key |
Regenerate
just sync
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
islo-0.1.8.tar.gz
(12.4 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
islo-0.1.8-py3-none-any.whl
(17.1 kB
view details)
File details
Details for the file islo-0.1.8.tar.gz.
File metadata
- Download URL: islo-0.1.8.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- 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 |
8e0c7d99b7521a0457ac9de55c75ce3451b5b8741408e9591a323ab7653dd594
|
|
| MD5 |
663fb6aee15d57e964589ac4c2f27723
|
|
| BLAKE2b-256 |
56c57dd47a998210f623c6b7c4a786b3fde18605cc7a4247127381272072acfe
|
File details
Details for the file islo-0.1.8-py3-none-any.whl.
File metadata
- Download URL: islo-0.1.8-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- 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 |
f2b242da5570d7818866b239060a73cfb149c8d26af495e43b7c74c67de7d84a
|
|
| MD5 |
8c939966c5a18c6b18def127dac8e4eb
|
|
| BLAKE2b-256 |
9ab7fe4aabbf1d19c8edaf88229a361be3cf49224bf7d03cdcecfffa7736d1b4
|