chore(release): 1.3.0 [skip ci] # [1.3.0](https://github.com/pycasbin/rabbitmq-watcher/compare/v1.2.0...v1.3.0) (2024-03-29) ### Features * upgrade CI Node.js version to 20 ([ada7e99](https://github.com/pycasbin/rabbitmq-watcher/commit/ada7e99a9db15a661a85d10dc8da8125423a0ced))
Rabbitmq Watcher is the rabbitmq watcher for pycasbin. With this library, Casbin can synchronize the policy with the database in multiple enforcer instances.
pip install casbin-rabbitmq-watcher
import os import casbin from casbin_rabbitmq_watcher import new_watcher def get_examples(path): examples_path = os.path.split(os.path.realpath(__file__))[0] + "/../examples/" return os.path.abspath(examples_path + path) def update_callback_func(msg): ... watcher = new_watcher() watcher.set_update_callback(update_callback_func) e = casbin.Enforcer( get_examples("rbac_model.conf"), get_examples("rbac_policy.csv") ) e.set_watcher(watcher) # update_callback_func will be called e.save_policy()
This project is under Apache 2.0 License. See the LICENSE file for the full license text.