Skip to main content

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) -> bool
  • do_pack_flow(pack: Pack) -> bool
  • do_roam_flow(roam: Roam) -> bool

Result 类型(返回 True/False)

  • do_result(ctx: Context) -> bool
  • do_pack_result(pack: Pack) -> bool
  • do_roam_result(roam: Roam) -> bool

None 类型(无返回值)

  • do_none(ctx: Context) -> None
  • do_pack_none(pack: Pack) -> None
  • do_roam_none(roam: Roam) -> None

版本要求

  • Python >= 3.11

License

Apache-2.0

Project details


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.1.tar.gz (30.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ice_rules-3.0.1-py3-none-any.whl (37.9 kB view details)

Uploaded Python 3

File details

Details for the file ice_rules-3.0.1.tar.gz.

File metadata

  • Download URL: ice_rules-3.0.1.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

Hashes for ice_rules-3.0.1.tar.gz
Algorithm Hash digest
SHA256 7d1865bc047e4eae33d2aa2da3b1556e4f9f8cee972885dcef50998b3fd13e00
MD5 8ccf6ccb6e11d1f74245fabe0938db7c
BLAKE2b-256 f1b415d06ad81cdc9e2afbfa47f25de333c0b746ab4f326063db1a1a7f41c526

See more details on using hashes here.

File details

Details for the file ice_rules-3.0.1-py3-none-any.whl.

File metadata

  • Download URL: ice_rules-3.0.1-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

Hashes for ice_rules-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 11bbe4398abaf1fa44e6d213441d235aa7c014f522e5fc5876a0e88d08fdd383
MD5 23533f49cbc3dae888e4d3f0d60a1789
BLAKE2b-256 2f97acf8e13236fefaef3914c76ab1ed786a4091128318523e62e4626b67cf5f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page