A business rules engine
Project description
A business rules engine
Installation
pip install retrack
Usage
import retrack
rule = retrack.from_json("rule.json")
result = rule.execute(your_data_df)
Creating a rule/model
A rule is a set of conditions and actions that are executed when the conditions are met. The conditions are evaluated using the data passed to the runner. The actions are executed when the conditions are met.
Each rule is composed of many nodes. To see each node type, check the nodes folder.
To create a rule, you need to create a JSON file with the following structure:
{
"nodes": {
"node id": {
"id": "node id",
"data": {},
"inputs": {},
"outputs": {},
"name": "node name",
},
// ... more nodes
}
}
The nodes
key is a dictionary of nodes. Each node has the following properties:
id
: The node id. This is used to reference the node in theinputs
andoutputs
properties.data
: The node data. This is used as a metadata for the node.inputs
: The node inputs. This is used to reference the node inputs.outputs
: The node outputs. This is used to reference the node outputs.name
: The node name. This is used to define the node type.
The inputs
and outputs
properties are dictionaries of node connections. Each connection has the following properties:
node
: The node id that is connected to the current node.input
: The input name of the connection that is connected to the current node. This is only used in theinputs
property.output
: The output name of the connection that is connected to the current node. This is only used in theoutputs
property.
To see some examples, check the examples folder.
Creating a custom node
To create a custom node, you need to create a class that inherits from the BaseNode
class. Each node is a pydantic model, so you can use pydantic features to create your custom node. To see the available features, check the pydantic documentation.
To create a custom node you need to define the inputs and outputs of the node. To do this, you need to define the inputs
and outputs
class attributes. Let's see an example of a custom node that has two inputs, sum them and return the result:
import retrack
import pydantic
import pandas as pd
import typing
class SumInputsModel(pydantic.BaseModel):
input_value_0: retrack.InputConnectionModel
input_value_1: retrack.InputConnectionModel
class SumOutputsModel(pydantic.BaseModel):
output_value: retrack.OutputConnectionModel
class SumNode(retrack.BaseNode):
inputs: SumInputsModel
outputs: SumOutputsModel
def run(self, input_value_0: pd.Series,
input_value_1: pd.Series,
) -> typing.Dict[str, pd.Series]:
output_value = input_value_0.astype(float) + input_value_1.astype(float)
return {
"output_value": output_value,
}
After creating the custom node, you need to register it in the nodes registry and pass the registry to the parser. Let's see an example:
import retrack
# Register the custom node
custom_registry = retrack.nodes_registry()
custom_registry.register("sum", SumNode)
rule = retrack.from_json("rule.json", nodes_registry=custom_registry)
Contributing
Contributions are welcome! Please read the contributing guidelines first.
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
Built Distribution
File details
Details for the file retrack-2.10.1.tar.gz
.
File metadata
- Download URL: retrack-2.10.1.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29106ea184dc5b2e5c17133684d27445448c44fd6d4cb47e9e724824d548c360 |
|
MD5 | 4ae50668bfd4b19522672e601a57d1db |
|
BLAKE2b-256 | 6f75c7710df9bba9d809fb4b5fe7d442950f90cac9c4ef201f078c0e1995caac |
File details
Details for the file retrack-2.10.1-py3-none-any.whl
.
File metadata
- Download URL: retrack-2.10.1-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cf838c1ffe61560ec5ff0e1b4b00c78f4fb3fb511b1355eafbd9dccd31e616e |
|
MD5 | 502e9f3b5cc950fad9e11055a15a499e |
|
BLAKE2b-256 | f6f441decd5e014c0fdf4cee5cee19894b1f578c5bef1c5a12dc09eecc522163 |