This project provides a library for creating general purpose "Rule" objects from a logical expression which can then be applied to arbitrary objects to evaluate whether or not they match.
Project description
This project provides a library for creating general purpose “Rule” objects from a logical expression which can then be applied to arbitrary objects to evaluate whether or not they match.
Documentation is available at https://zeroSteiner.github.io/rule-engine/.
Rule Engine expressions are written in their own language, defined as strings in Python. Some features of this language includes:
Optional type hinting
Matching strings with regular expressions
Datetime datatypes
Data attributes
Example
The following example demonstrates the basic usage of defining a rule object and applying it to two dictionaries, showing that one matches while the other does not. See Getting Started for more information.
import rule_engine
# match a literal first name and applying a regex to the email
rule = rule_engine.Rule(
'first_name == "Luke" and email =~ ".*@rebels.org$"'
) # => <Rule text='first_name == "Luke" and email =~ ".*@rebels.org$"' >
rule.matches({
'first_name': 'Luke', 'last_name': 'Skywalker', 'email': 'luke@rebels.org'
}) # => True
rule.matches({
'first_name': 'Darth', 'last_name': 'Vader', 'email': 'dvader@empire.net'
}) # => False
Credits
Spencer McIntyre - zeroSteiner (@zeroSteiner)
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
File details
Details for the file rule-engine-2.1.1.tar.gz
.
File metadata
- Download URL: rule-engine-2.1.1.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b22e99d296c982d344453ea20628e5b2a06cc3674d455ccf59770862c930d693 |
|
MD5 | 2001b6316da2c848f674df61f87ba614 |
|
BLAKE2b-256 | 66c1c5488bcc06bf13d21c30ad68ccab3f6cb9ecfb53a7304a518d42d5910b58 |