I’m trying to append “????????” to everything I write as a challenge to live a week with that enabled. It’s quite easy to send “????????” after the fact with the keyboard module, but what I want to achieve is sending it before I press the enter key.
Here’s my current code:
# it still sends it after the enter keypress
import keyboard
def on_enter_press(event):
if event.name == "enter":
keyboard.block_key('enter')
keyboard.write("????????")
keyboard.unhook_all()
keyboard.press_and_release("enter")
keyboard.hook_key('enter', on_enter_press)
keyboard.wait('esc')