在 Python 中获取活动窗口
捕获屏幕上的活动窗口对于自动执行任务(例如输入用户名和密码)至关重要。对于 Python 用户,有几个库提供了实现此目的的功能。
使用 Python 进行 Windows 扩展
pywin32 库是 Python 的一个扩展,可以使用 Windows API功能。使用 pywin32 获取活动窗口:
from win32gui import GetWindowText, GetForegroundWindow
# Get the handle of the foreground window
hwnd = GetForegroundWindow()
# Get the window title
window_title = GetWindowText(hwnd)
# Print the window title
print(window_title)
注意:在Python 3中,应该使用print(window_title)而不是print window_title。
替代库
其他库可以用于此目的include:
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3