Ice Rule Engine Python SDK
Project description
Ice Python SDK
Ice 规则引擎的 Python 实现,与 Java ice-core 和 Go SDK 功能一致。
安装
pip install ice-rules
快速开始
1. 注册叶子节点
import ice
from ice import Roam
@ice.leaf("com.example.ScoreFlow")
class ScoreFlow:
threshold: int = 0
def do_roam_flow(self, roam: Roam) -> bool:
return roam.get_int("score", 0) >= self.threshold
2. 启动客户端
# 同步方式
client = ice.FileClient(app=1, storage_path="./ice-data")
client.start()
pack = ice.Pack(ice_id=1)
pack.roam.put("score", 85)
results = ice.sync_process(pack)
client.destroy()
3. 异步方式
import asyncio
async def main():
client = ice.AsyncFileClient(app=1, storage_path="./ice-data")
await client.start()
pack = ice.Pack(ice_id=1)
pack.roam.put("score", 85)
results = await ice.async_process(pack)
await client.destroy()
asyncio.run(main())
叶子节点类型
Flow 类型(返回 True/False)
do_flow(ctx: Context) -> booldo_pack_flow(pack: Pack) -> booldo_roam_flow(roam: Roam) -> bool
Result 类型(返回 True/False)
do_result(ctx: Context) -> booldo_pack_result(pack: Pack) -> booldo_roam_result(roam: Roam) -> bool
None 类型(无返回值)
do_none(ctx: Context) -> Nonedo_pack_none(pack: Pack) -> Nonedo_roam_none(roam: Roam) -> None
版本要求
- Python >= 3.11
License
Apache-2.0
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
ice_rules-3.0.0.tar.gz
(30.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
ice_rules-3.0.0-py3-none-any.whl
(37.9 kB
view details)
File details
Details for the file ice_rules-3.0.0.tar.gz.
File metadata
- Download URL: ice_rules-3.0.0.tar.gz
- Upload date:
- Size: 30.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78fe3170c66e9679983a63060367cd309e9a62acd0bd86a3022c1e43292cae14
|
|
| MD5 |
7ec9d1b5db31d4108796ff1149479f7f
|
|
| BLAKE2b-256 |
1067cf187ec9026bb810b59ba910fa6081b23b7d2f2a96ab3c6c3421b05e170b
|
File details
Details for the file ice_rules-3.0.0-py3-none-any.whl.
File metadata
- Download URL: ice_rules-3.0.0-py3-none-any.whl
- Upload date:
- Size: 37.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b06517604aa4f0e89b074c7a0f8a3fe144a340f0101740a95b3e61a07d2a164
|
|
| MD5 |
cd9c3ef54ca000a44038573c5030a299
|
|
| BLAKE2b-256 |
3dd0003b71e45f1b6f96eb27970bab3f531bff675872bf77fa03dad2eb5cec32
|