Skip to content

Instantly share code, notes, and snippets.

@kost
Forked from narongdejsrn/rotate
Created April 30, 2017 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kost/af61d06dc0317b6fde501caea2a38883 to your computer and use it in GitHub Desktop.
Save kost/af61d06dc0317b6fde501caea2a38883 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