Venmo’s business‑rules
library offers a Python‑based domain‑specific language (DSL) that decouples business decision logic from application code. In technical terms, you use the library by following these steps:
-
Defining Variables:
You create a subclass of a provided base (typically something likeBaseVariables
) where you expose the data points from your domain model. Each method that returns a value is decorated (for example, with@numeric_rule_variable
or@string_rule_variable
) so that the engine knows both the type of data and which operators are valid for that variable. -
Defining Actions:
Similar to variables, you define an actions class (subclassingBaseActions
) where each method represents a business operation to be performed. The methods are annotated with@rule_action
, along with a description of the expected parameters. This lets the engine know what side‑effects to trigger once a rule’s conditions are met. -
**Building