- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpaste_text.py
More file actions
Latest commit
23 lines (15 loc) · 408 Bytes
/
Copy pathpaste_text.py
File metadata and controls
23 lines (15 loc) · 408 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Programa desarrollado por el Licenciado César Cordero Rodríguez.
Bajo licencia GPLv3.
Puede ser modificado, copiado y distribuido.
Se desarrolló con fines educativos.
Paste Text after 2 seconds.
"""
frompynput.keyboardimportKey, Controller
importtime
keyboard=Controller()
text="text_pasted"
time.sleep(2)
forsintext:
keyboard.press(s)
keyboard.release(s)