Metadata-Version: 2.0
Name: rulengine
Version: 0.0.4
Summary: Simple Rule Engine
Home-page: https://github.com/baranbartu/rulengine
Author: Baran Bartu Demirci
Author-email: bbartu.demirci@gmail.com
License: MIT
Download-URL: https://github.com/baranbartu/rulengine/tarball/0.0.4
Description-Content-Type: UNKNOWN
Keywords: python,rule,rule executor,rule engine
Platform: UNKNOWN

# rulengine
##### Simple Rule Engine for Python

# Installation
```bash
pip install rulengine
```

# Usage
```bash
In [1]: from rulengine.core import DataStructure, Operator, Rule
In [2]: from rulengine import execute

In [3]: rule = Rule(value=1, operator=Operator.EQUAL, comparison_value=1, data_structure=DataStructure.INTEGER)
In [4]: execute([rule])
Out[5]: True
```


