Skip to content

Instantly share code, notes, and snippets.

@jonasbits
Last active April 25, 2021 22:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jonasbits/6861522 to your computer and use it in GitHub Desktop.
Save jonasbits/6861522 to your computer and use it in GitHub Desktop.
import time
import sys
import os
import ctypes
ES_CONTINUOUS = 0x80000000
ES_AWAYMODE_REQUIRED = 0x00000040
ES_SYSTEM_REQUIRED = 0x00000001
ES_DISPLAY_REQUIRED = 0x00000002
ctypes.windll.kernel32.SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED)
p = ['|', '/', '-', '\\']
os.system('cls')
while True:
for i in range(0, 4):
print('\r' + p[i] + ' Press Ctrl-C to allow computer to sleep', end='')
try:
time.sleep(2)
except(KeyboardInterrupt):
print('\nGoodbye')
sys.exit()
@jonasbits
Copy link
Author

first this call get
"-2147483648"

then the rest of the time
"-2147483647"

@jonasbits
Copy link
Author

i made a windows exe release with cx_freeze

@jonasbits
Copy link
Author

better tab usage, python is very particular about that ;-)

@jbfuzier
Copy link

Just to clear things up regarding return code (conversion from unsigned int to hex)
first this call get
"-2147483648" -> 0x80000000 = ES_CONTINUOUS

then the rest of the time
"-2147483647" -> 0x80000001 = ES_CONTINUOUS | ES_SYSTEM_REQUIRED

@kbarnes3
Copy link

Thanks for this gist! I adapted it into a decorator that calls SetThreadExecution appropriately to ensure the computer doesn't go into standby while the decorated function is running. My forked gist is: https://gist.github.com/kbarnes3/3fb7d353e9bdd3efccd5

@jonasbits
Copy link
Author

excellent remix @kbarnes3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment