import ctypes
lib = ctypes.windll.LoadLibrary('user32.dll')
handle = lib.GetForegroundWindow()
buffer = ctypes.create_unicode_buffer(255)
lib.GetWindowTextW(handle, buffer, ctypes.sizeof(buffer))
active = buffer.value
print(active)
active 변수가 활성화된 창의 제목입니다.
반응형
'코딩 > Python' 카테고리의 다른 글
파이썬 base64 encode, decode (0) | 2021.03.06 |
---|---|
파이썬 windows 유저 이름 얻기 (0) | 2021.03.06 |
파이썬 반비례 그래프 그리기 (0) | 2021.03.01 |
Python - Flask - Request (0) | 2021.02.21 |
Python - Tkinter - Label (0) | 2021.02.14 |