Metadata-Version: 2.1
Name: rulent
Version: 0.0.1
Summary: A declarative rules engine.
Home-page: https://github.com/razaibi/pyrulent
Author: Raza Balbale
Author-email: ribalbale@gmail.com
License: Apache 2.0
Project-URL: Documentation, https://github.com/razaibi/pyrulent/README.md
Project-URL: Source, https://github.com/razaibi/pyrulent
Project-URL: Tracker, https://github.com/razaibi/pyrulent/
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyyaml
Requires-Dist: pydantic

### Rulent

Rulent is a python in-memory latency events engine that uses a set of declarative rules and triggers actions (outcomes).

### Key Components

The main components of the event engine are as below.

#### The Web API

This is for ingesting events. This acts as the entry point for new events to be received and validation against rules.

#### Events

Events are specific, explicitly sent, pieces of information sent with the payload. This sets the foundation for the rules engine to process rules based on the event.

#### Rules

These are the rules that need to be applied on the JSON payload. This has support for dot notation. The rules can be combined using `rules-operator: "or"`. 

A sample rules block:

```yaml
    rules-operator: "and"
    rules:
      - rule: "Name Check"
        conditions:
          - "person.name": "James"
      - rule: "Age Check"
        conditions:
          - "person.age": ">42"
          - "person.age": "!43"
```

#### Outcomes

Once the payloads have been processed against rules, matched payloads can initiate actions. **Actions** are bundled together as outcomes.

Note: Actions are executed asynchronously.


#### Actions 

Actions that are part of outcomes can be extended by navigating to the logic folder and actions.go file. Currently, this has access to outcomes and the payloads that were received.
