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_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()

roam = ice.Roam.create()
roam.set_id(1)
roam.put("score", 85)
results = ice.sync_process(roam)

client.destroy()

3. 异步方式

import asyncio

async def main():
    client = ice.AsyncFileClient(app=1, storage_path="./ice-data")
    await client.start()

    roam = ice.Roam.create()
    roam.set_id(1)
    roam.put("score", 85)
    results = await ice.async_process(roam)

    await client.destroy()

asyncio.run(main())

叶子节点类型

Flow 类型(返回 True/False)

  • do_flow(roam: Roam) -> bool

Result 类型(返回 True/False)

  • do_result(roam: Roam) -> bool

None 类型(无返回值)

  • do_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-4.0.11.tar.gz (35.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-4.0.11-py3-none-any.whl (43.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ice_rules-4.0.11.tar.gz
  • Upload date:
  • Size: 35.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-4.0.11.tar.gz
Algorithm Hash digest
SHA256 73a4f9f01a0ee58c1afb6cb95f4bcf77fbdcf534d158a486386550f9fa68b439
MD5 eb880624bfaffca521083c66251147a2
BLAKE2b-256 dbec7ef0301f12eaeb66af50a94752fdec32ea12a5eeba0b39878557f5a2b3de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ice_rules-4.0.11-py3-none-any.whl
  • Upload date:
  • Size: 43.4 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-4.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 5bc0dedc4cb68a03f4f3555f30d5a9c8d1dd3190eff5d37adcfd73ef4486c6f9
MD5 389b6f576d2eeaa24457813765650fb8
BLAKE2b-256 93492244e947430414e77e49cb1ceab90148b2c884c9003b79f69b14cc59f393

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