일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- django
- Java
- Kotlin
- numpy
- GIT
- c#
- dataframe
- Redshift
- matplotlib
- math
- Python
- PostgreSQL
- Google Spreadsheet
- Github
- string
- Apache
- PANDAS
- Tkinter
- SQL
- list
- Excel
- PySpark
- array
- Google Excel
- Mac
- hive
- 파이썬
- gas
- google apps script
- Today
- Total
목록전체 글 (832)
달나라 노트
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, ..
어떤 텍스트에서 내가 원하는 특정 문자열의 포함 여부를 판단하려면 __contains__를 이용할 수 있습니다. __contains__는 두 가지 방식으로 사용할 수 있습니다. 첫 번째 사용법 입니다.str.__contains__(text1, text2) __contains__는 str의 method이므로 위처럼 str 객체로부터 호출하여 사용할 수 있습니다.text1에 text2가 포함되어있으면 Truetext1에 text2가 포함되어있지 않으면 False를 return합니다. 두 번째 사용법 입니다.text1.__contains__(text2)약간의 방식만 달라졌을 뿐 완전히 동일한 기능을 수행합니다.text1에 text2가 포함되어있으면 Truetext1에 text2가 포함되어있지 않으면 Fa..