py_rete
py_rete copied to clipboard
Python RETE algorithm
Are there any plans to create some facility to add Productions to a network based on information stored in a text file? It could be plain_text, xml, yaml, json, etc....
This closes issue #4. Additionally, this makes a few tweaks to the implementation of the `&` and `|` operators among conditions. There are a few no-cover comments in places where...
Current state (approximately) ``` Name Stmts Miss Branch BrPart Cover Missing ---------------------------------------------------------------------- py_rete/alpha.py 12 0 2 0 100% py_rete/beta.py 23 0 2 0 100% py_rete/bind_node.py 24 0 8 0 100%...
Use a `pyproject.toml` to specify generic dependencies and replace `setup.*` files. Use **pip-tools** `pip-compile` to generate `requirements.txt` for run-time dependencies, `requirements-test.txt` for test dependencies, and `requirements-dev.txt` for other development tools...
Start with testing in 3.8, 3.9, 3.10, and 3.11 environments in the `tox.ini` configuration. Because of changes to `typing` module, there are two choices. 1. Set `mypy` to a specific...
We use this package in a production system. When I was writing some more complex boolean logic, I noticed some combinations of boolean operators did not work as expected, and...