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.6.tar.gz
(11.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.6-py3-none-any.whl
(16.2 kB
view details)
File details
Details for the file islo-0.1.6.tar.gz.
File metadata
- Download URL: islo-0.1.6.tar.gz
- Upload date:
- Size: 11.5 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 |
3ca9a8b9ddc94aa607ca16f95be4fbf22874eb1ca16de18d02045e69409e6394
|
|
| MD5 |
cbeac4d1f47593be7fa29c2b872291ac
|
|
| BLAKE2b-256 |
691d4e6ef0fe063ba8cc03a66b333fb6b7cece367daa69b4049912893f75fcc3
|
File details
Details for the file islo-0.1.6-py3-none-any.whl.
File metadata
- Download URL: islo-0.1.6-py3-none-any.whl
- Upload date:
- Size: 16.2 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 |
9eab920dbbc1e07235cb50218688958a15eb5ac05b321b4c8c44ff882ce0f0de
|
|
| MD5 |
b8aa99f559e67a3ae42b3681db27b33a
|
|
| BLAKE2b-256 |
ebcf333d070f7d585f6540654cb35ccf9600572de30f0a0ff161f7667295656f
|