Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I stop a while loop when a key is pressed with Autokey?

Tags:

python

autokey

I'm trying to write a small script with Autokey (not regular Python) on Linux Mint which presses a single key and stops after I press another specific key but I can't get it to stop the loop after I press this specific key.

I got the loop working but I can't make it stop.

import time
a = True
b = keyboard.press_key('s')
keyboard.release_key('s')
while a:
    keyboard.send_key("a", repeat=5)
    time.sleep(2)
    if b:
        break

So this outputs the letter "a" indefinitely and after I press "s" it doesn't stop and I don't know what I'm doing wrong

I read about the while function and break but all the examples I found were with a loop stopping after it reached a certain number and these examples with numbers are different than what I try to achieve with this kind of script so I hope someone can help me to figure this out.

like image 200
minionlou Avatar asked Sep 16 '25 01:09

minionlou


1 Answers

You will have to use the keyboard module for this, because press_key is used to "press" the keys not to detect.

If you haven't already installed keyboard you can do it by going to cmd, pip install keyboard

after that you can add the code in python as follows, pressing "q" will print "a" 5 times and pressing "s" will stop the program.

import keyboard
while True: 
   if keyboard.is_pressed('q'):  # pressing q will print a 5 times
      for i in range(5):
         print("a")
      break  
   elif keyboard.is_pressed('s'): # pressing s will stop the program
      break
like image 76
Lakshan Costa Avatar answered Sep 17 '25 14:09

Lakshan Costa