Build Your Own
set_hibernation() overrides the publisher's idle behavior. Build it step by step:
Step 1 — Import the library
import icepython as iceStep 2 — Keep the publisher active (no hibernation) for a long-running dashboard:
ice.set_hibernation(False)Step 3 — Confirm the state with get_hibernation():
print(ice.get_hibernation())Output:
'False'