Dup Ver Goto 📝

PreventSleep

PT2/lang/python/snippets python py sleep does not exist
To
17 lines, 49 words, 322 chars Page 'PreventSleep' does not exist.
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