Openhab python rule engine
Project description
OpenHAB python rule engine
A Python 3.x rule engine for OpenHAB. This rule engine allows you to define rules using Python 3.x.
Please note that OpenHAB username/password authentication (basic authentication) must be activated. To do so, open API security settings and enable the advanced setting Allow Basic Authentication.
To run this software, you can use Docker or the PIP package manager, as shown below
Docker approach
sudo docker run -e openhab_uri=http://192.168.1.17:8080 -e user=me -e pwd=secret -v /etc/openhab2/automation/rules/python:/rules grro/pythonrule_engine
PIP approach
sudo pip install openhab-pythonrule-engine
sudo pyrule --command listen --openhab_uri http://localhost:8080 --python_rule_directory /etc/openhab2/automation/rules/python --user me --pwd secret
In this case, the rules engine connects to the Openhab instance running on the local machine on port 8080. Also, the /etc/openhab2/automation/rules/python directory is used to search for python-based rules
If you are using a systemd-based Linux distribution, you can use the register command to register and start the rule engine as a systemd entity. This automatically starts the rule engine at boot time. Starting the Rule Engine manually with the listen command is no longer necessary.
sudo pyrule --command register --openhab_uri http://localhost:8080 --python_rule_directory /etc/openhab2/automation/rules/python --user me --pwd secret
Rules
To trigger a rule method, the @when decorator must be used. Currently the conditions listed below are supported
condition | example | description |
---|---|---|
cron | @when('Time cron */1 * * * *') | fires based on cron expression |
item state change | @when('Item PhoneLisaLastSeen changed') | fires when the specified Item's State changes |
item command | @when('Item SelectDoorCam received command ON') @when('Item SelectDoorCam received command OFF') |
fires when the specified Item receives a Command |
Example: my_rule.py (located within /etc/openhab2/automation/rules/python)
from openhab_pythonrule_engine.condition import when
from openhab_pythonrule_engine.item_registry import ItemRegistry
@when("Time cron */1 * * * *") # each minute
@when("Item PhoneLisaLastSeen changed")
@when("Item PhoneTimLastSeen changed")
def update_presence_based_on_phone_seen(item_registry: ItemRegistry):
last_time_present = item_registry.get_state_as_datetime('LastDateTimePresence')
for phone_name in item_registry.get_group_membernames('Phones'):
last_seen = item_registry.get_state_as_datetime(phone_name)
print(last_seen)
if last_seen > last_time_present:
last_time_present = last_seen
item_registry.set_state('LastDateTimePresence', last_time_present)
# uncomment the code below for local debugging
#item_registry = ItemRegistry.new_singleton(openhab_uri="http://192.168.1.27:8080/", user="xxx", pwd="secret")
#update_presence_based_on_phone_seen(item_registry)
If the rule method defines a (single!) argument, the item_registry object is automatically injected. The item_registry object provides methods for getting and setting the item state. When setting the state, the data value is automatically converted to the item-specific data type
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
Built Distribution
File details
Details for the file openhab_pythonrule_engine-1.2.24.tar.gz
.
File metadata
- Download URL: openhab_pythonrule_engine-1.2.24.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dc2dd24b7da39bbe0861ec767dd946f3c75d9b6b252d7484631795e891640b9 |
|
MD5 | 7d0fb12fa55c70f845ca77ede4dbbbd9 |
|
BLAKE2b-256 | f2f7ac1ad18327c955e4574f0f2a721f7858f5c0108009e37ce9ebbff66266db |
File details
Details for the file openhab_pythonrule_engine-1.2.24-py3-none-any.whl
.
File metadata
- Download URL: openhab_pythonrule_engine-1.2.24-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f9b1f5002ee917f670babdf3c5b1f918b9349fa5cd9c3e83fafc6f4e98ccda2 |
|
MD5 | a40b279a4992262ab643cd6cc2258366 |
|
BLAKE2b-256 | 7e66e7e6181ad7de18decb05e9e6dfed812c92723f54923fb39b6ea777d65308 |