DOT HEX FINALLY WORKED

This commit is contained in:
ekaraogullari 2024-07-04 22:59:58 +03:00
parent a24f8fc83e
commit 3f888fc892
2 changed files with 3 additions and 18 deletions

View File

@ -10,6 +10,9 @@ CTRL l
DELAY 300
REM URL yazma (ASCII kodları kullanarak)
SHIFT 0x37
SHIFT 0x38
SHIFT 0x39
STRING karaogullari
0x37
0x38

View File

@ -1,18 +0,0 @@
import keyboard
import pyautogui
def main():
print("Press keys on your keyboard to see their mapping. Press 'q' to quit.")
while True:
try:
key = keyboard.read_event(suppress=True).name
if key == "q":
break
print(f"Key: {key}, Character: {pyautogui.KEYBOARD_KEYS.get(key, 'No mapping')}")
except KeyboardInterrupt:
print("\nExiting...")
break
if __name__ == "__main__":
main()