Dup Goto 📝

PreventSleep

PT2/lang/python/snippets python py sleep 01-24 14:38:06
To Pop
17 lines, 49 words, 322 chars Wednesday 2024-01-24 14:38:06
python -m pip install wakepy
from wakepy import keep

# Prevent sleep
Prevent screensaver/screen lock (and sleep):
with keep.running():
    # do stuff that takes long time

# Prevent screensaver/screen lock (and sleep):
from wakepy import keep

with keep.presenting():
    # do stuff that takes long time