III SDK for Python
Project description
III SDK for Python
Python SDK for the III Engine.
Installation
pip install iii-sdk
Usage
import asyncio
from iii import III
async def my_function(data):
return {"result": "success"}
iii = III("ws://localhost:49134")
iii.register_function("my.function", my_function)
async def main():
await iii.connect()
result = await iii.call("other.function", {"param": "value"})
print(result)
asyncio.run(main())
Register API trigger
import asyncio
from iii import III, ApiRequest, ApiResponse
iii = III("ws://localhost:49134")
async def create_todo(data):
req = ApiRequest(**data)
return ApiResponse(status=201, data={"id": "123", "title": req.body.get("title")})
iii.register_function("api.post.todo", create_todo)
async def main():
await iii.connect()
iii.register_trigger(
trigger_type="api",
function_id="api.post.todo",
config={
"api_path": "/todo",
"http_method": "POST",
"description": "Create a new todo"
}
)
asyncio.run(main())
Features
- WebSocket-based communication with III Engine
- Function registration and invocation
- Trigger registration
- Context-aware logging
- Async/await support
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.0.2a0.tar.gz
(49.1 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.0.2a0-py3-none-any.whl
(12.2 kB
view details)
File details
Details for the file iii_sdk-0.0.2a0.tar.gz.
File metadata
- Download URL: iii_sdk-0.0.2a0.tar.gz
- Upload date:
- Size: 49.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d5b7fc041e78fa1a3c5974be2d06f79951cdcd012d68dfddefe6bc71dcc5b7b
|
|
| MD5 |
23ee9f696fa0e1b6794c899c69f1505a
|
|
| BLAKE2b-256 |
56113ba3fd78eff9085bb2df97a8c78c9c11e9f2a0171ceea52a507ea26daaa3
|
File details
Details for the file iii_sdk-0.0.2a0-py3-none-any.whl.
File metadata
- Download URL: iii_sdk-0.0.2a0-py3-none-any.whl
- Upload date:
- Size: 12.2 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 |
a8f54664bbcb4b7635e0f1946aff05e70f37cc225e58eeda24c3009e1a831a02
|
|
| MD5 |
b830f3fb2e911a9a2e86a090c5df954c
|
|
| BLAKE2b-256 |
e98a3428a89b287bce946a0788960adc56b1a557477da0b685228873f30acbaa
|