III SDK for Python
Project description
iii-sdk
Python SDK for the iii engine.
Install
pip install iii-sdk
Hello World
from iii import III
iii = III("ws://localhost:49134")
def greet(data):
return {"message": f"Hello, {data['name']}!"}
iii.register_function({"id": "greet"}, greet)
iii.register_trigger({
"type": "http",
"function_id": "greet",
"config": {"api_path": "/greet", "http_method": "POST"},
})
iii.connect()
result = iii.trigger({"function_id": "greet", "payload": {"name": "world"}})
print(result) # {"message": "Hello, world!"}
API
| Operation | Signature | Description |
|---|---|---|
| Initialize | III(url, options?) |
Create an SDK instance |
| Connect | iii.connect() |
Connect to the engine |
| Register function | iii.register_function({"id": id}, handler) |
Register a function that can be invoked by name |
| Register trigger | iii.register_trigger({"type": ..., "function_id": ..., "config": ...}) |
Bind a trigger (HTTP, cron, queue, etc.) to a function |
| Invoke (await result) | iii.trigger({"function_id": id, "payload": data}) |
Invoke a function and wait for the result |
| Invoke (fire-and-forget) | iii.trigger({"function_id": id, ..., "action": TriggerAction.Void()}) |
Fire-and-forget |
| Shutdown | iii.shutdown() |
Disconnect and stop background thread |
Registering Functions
def create_order(data):
return {"status_code": 201, "body": {"id": "123", "item": data["body"]["item"]}}
iii.register_function({"id": "orders.create"}, create_order)
Registering Triggers
iii.register_trigger({
"type": "http",
"function_id": "orders.create",
"config": {"api_path": "/orders", "http_method": "POST"},
})
Invoking Functions
result = iii.trigger({"function_id": "orders.create", "payload": {"body": {"item": "widget"}}})
Modules
| Import | What it provides |
|---|---|
iii |
Core SDK (III, types) |
iii.stream |
Stream client for real-time state |
iii.telemetry |
OpenTelemetry integration |
Development
Install in development mode
pip install -e .
Type checking
mypy src
Linting
ruff check src
Resources
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
iii_sdk-0.9.0.tar.gz
(167.0 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
iii_sdk-0.9.0-py3-none-any.whl
(39.0 kB
view details)
File details
Details for the file iii_sdk-0.9.0.tar.gz.
File metadata
- Download URL: iii_sdk-0.9.0.tar.gz
- Upload date:
- Size: 167.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c548b79eaf128bdd4d94bfe8b4719e9fb70ab0250f544ab3db34daa66e10df3e
|
|
| MD5 |
39eb7bf33718199a54c130a235363910
|
|
| BLAKE2b-256 |
a0024d7384c951c9f3ab235f1e39da6e9fbf0255053a9de406c7312a9ff20842
|
File details
Details for the file iii_sdk-0.9.0-py3-none-any.whl.
File metadata
- Download URL: iii_sdk-0.9.0-py3-none-any.whl
- Upload date:
- Size: 39.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fa9955d86920d071a205e1500d16ee4cc2d0c75f359f76e826dda0a1b1abfd6
|
|
| MD5 |
897b85bb3f99e5fc89a9c3648965f36e
|
|
| BLAKE2b-256 |
656e6fc3beda87ba0c8de49300a1a21b396868c14df2001236d75eb7abc71a3d
|