Skip to content

Instantly share code, notes, and snippets.

View wnma3mz's full-sized avatar
🎯
Focusing

wnma wnma3mz

🎯
Focusing
View GitHub Profile
@wnma3mz
wnma3mz / win32_keystroke.py
Last active July 19, 2020 01:47 — forked from chriskiehl/Vitual keystroke example
Python win32api simple Vitual keystroke example
# codng: utf-8
import win32api
import win32con
import time
#Giant dictonary to hold key name and VK value
VK_CODE = {'backspace':0x08,
'tab':0x09,
'clear':0x0C,
'enter':0x0D,