일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- math
- 파이썬
- google apps script
- matplotlib
- hive
- PANDAS
- Google Excel
- PySpark
- dataframe
- Github
- list
- Redshift
- Apache
- numpy
- gas
- Excel
- PostgreSQL
- SQL
- Mac
- GIT
- c#
- Tkinter
- string
- Java
- Python
- Google Spreadsheet
- array
- Kotlin
- django
- Today
- Total
목록2024/11/05 (3)
달나라 노트
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..
pynput library로 mouse를 컨트롤 하는 방법을 알아봅시다.(mac환경에서 진행됩니다.) from pynput.mouse import Button, Controllermouse = Controller()print('The current pointer position is {0}'.format(mouse.position)) 위처럼 mouse 객체를 만들면 position attribute는 마우스의 위치를 담고 있습니다. 화면의 왼쪽 가장 위가 (0, 0)이며오른쪽으로 갈수록 x좌표가 양수로 증가하고아래쪽으로 갈수록 y좌표가 양수로 증가합니다. from pynput.mouse import Button, Controllermouse = Controller()# move pointer to ..
Python에서는 PIL module을 이용하여 화면을 캡쳐할 수 있습니다. from PIL import ImageGrab# capture entire screenimg = ImageGrab.grab()img.show() 위처럼 하면 화면 전체를 캡쳐할 수 있습니다. from PIL import ImageGrab# capture top-left rectangle with size 638px wide by 312px tallimg = ImageGrab.grab(bbox=(0, 0, 538, 312))img.show() 위처럼 화면 캡쳐 영역의 크기를 조절할 수도 있습니다. 캡쳐는 직사각형으로 할 수 있으며, bbox에 담겨진 4개의 인자는 각각 직사각형의 꼭지점 좌표를 의미합니다.bbox=(x1, ..