반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Redshift
- GIT
- numpy
- array
- django
- dataframe
- hive
- PostgreSQL
- c#
- Java
- Tkinter
- Mac
- Excel
- PySpark
- PANDAS
- Kotlin
- Apache
- list
- Google Excel
- SQL
- 파이썬
- gas
- Python
- Github
- google apps script
- Google Spreadsheet
- string
- math
- matplotlib
Archives
- Today
- Total
목록keyboard control (1)
달나라 노트
Python pynput : keyboard (python으로 키보드 컨트롤하기, Python으로 keyboard control)
pynput library로 keyboard를 컨트롤 하는 방법을 알아봅시다.(mac환경에서 진행됩니다.) from pynput.keyboard import Key, Controllerkeyboard = Controller()# press and release spacekeyboard.press(Key.space) # press spacekeyboard.release(Key.space) # release space press, release method를 이용해 keyboard의 key를 눌렀다 뗐다를 할 수 있습니다.press는 어떠한 key를 누르라는 의미이며release는 어떠한 key를 누른 상태에서 떼라는 의미입니다. Key를 for loop를 이용해 출력해보면 어떠한 key들이 Ke..
Python/Python ETC
2024. 11. 5. 20:17