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.9.tar.gz
(12.5 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.9-py3-none-any.whl
(17.1 kB
view details)
File details
Details for the file islo-0.1.9.tar.gz.
File metadata
- Download URL: islo-0.1.9.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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 |
280193831eae7c96150728bbe0649a155e23889403fd30e0bd31f6ff1dccdf20
|
|
| MD5 |
2e03a50bb9e367494a7243c7ab484564
|
|
| BLAKE2b-256 |
1b63a9155a23cc17fd8d219b5e0bd2d6d770e2052627538fe23ddd25287917e9
|
File details
Details for the file islo-0.1.9-py3-none-any.whl.
File metadata
- Download URL: islo-0.1.9-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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 |
f237b16fd79a24bf61f17ccae691ead04f9a49cb5625572c956ecbbab5edf342
|
|
| MD5 |
a9bb4cb53f7778f9f0626ec5c3c8f0b2
|
|
| BLAKE2b-256 |
a1135f7ea8f5cc6fe8eef7acdaf560ebb484d27dd9992f14583c3f6287d698bd
|