Skip to content

Instantly share code, notes, and snippets.

@narongdejsrn
Created July 6, 2015 06:21
Show Gist options
  • Save narongdejsrn/47fd77aceb475a5c21d2 to your computer and use it in GitHub Desktop.
Save narongdejsrn/47fd77aceb475a5c21d2 to your computer and use it in GitHub Desktop.
Python code to annoy your friend in Windows OS
import win32com.client
import time
import itertools
shell = win32com.client.Dispatch("WScript.Shell")
curArr = ["RIGHT", "DOWN", "LEFT", "UP"]
for element in itertools.cycle(curArr):
shell.SendKeys("^%{" + element + "}", 0)
time.sleep(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment