Initial commit

This commit is contained in:
Matias Fernandez
2018-03-27 10:45:54 -03:00
commit f4c77886bd
14 changed files with 3154 additions and 0 deletions

15
test.py Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pynput import mouse, keyboard
keyboard.Controller().press(keyboard.Key.shift)
keyboard.Controller().press('a')
#keyboard.Controller().modifiers(keyboard.Key().shift)
#print("Shift:", keyboard.Controller().shift_pressed)
#keyboard.Controller().press('a')
#keyboard.Controller().release('a')
#keyboard.Controller().release(keyboard.Key.shift_r)