boolean.py

Define, create, parse, and evaluate boolean algebra expressions

pipmacoslinuxwindows
Try with needOr install directly
Source

About

Define boolean algebras, create and parse boolean expressions and create custom boolean DSL.

Commands

boolean.py

Examples

Create and evaluate a simple boolean expression$ python -m boolean eval 'A AND B'
Parse and simplify a complex boolean expression$ python -m boolean simplify '(A OR B) AND (A OR C)'
Generate truth table for a boolean expression$ python -m boolean truth 'A XOR B'