如何使用python创建系统托盘弹出消息? (视窗)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用python创建系统托盘弹出消息? (视窗)相关的知识,希望对你有一定的参考价值。
我想知道如何使用python创建系统托盘弹出消息。我已经在很多软件中看到了这些软件,但很难找到资源来轻松地使用任何语言。有人知道在Python中这样做的一些库吗?
答案
在pywin32
library的帮助下,您可以使用以下示例代码我找到here:
from win32api import *
from win32gui import *
import win32con
import sys, os
import struct
import time
class WindowsBalloonTip:
def __init__(self, title, msg):
message_map = {
win32con.WM_DESTROY: self.OnDestroy,
}
# Register the Window class.
wc = WNDCLASS()
hinst = wc.hInstance = GetModuleHandle(None)
wc.lpszClassName = "PythonTaskbar"
wc.lpfnWndProc = message_map # could also specify a wndproc.
classAtom = RegisterClass(wc)
# Create the Window.
style = win32con.WS_OVERLAPPED | win32con.WS_SYSMENU
self.hwnd = CreateWindow( classAtom, "Taskbar", style,
0, 0, win32con.CW_USEDEFAULT, win32con.CW_USEDEFAULT,
0, 0, hinst, None)
UpdateWindow(self.hwnd)
iconPathName = os.path.abspath(os.path.join( sys.path[0], "balloontip.ico" ))
icon_flags = win32con.LR_LOADFROMFILE | win32con.LR_DEFAULTSIZE
try:
hicon = LoadImage(hinst, iconPathName,
win32con.IMAGE_ICON, 0, 0, icon_flags)
except:
hicon = LoadIcon(0, win32con.IDI_APPLICATION)
flags = NIF_ICON | NIF_MESSAGE | NIF_TIP
nid = (self.hwnd, 0, flags, win32con.WM_USER+20, hicon, "tooltip")
Shell_NotifyIcon(NIM_ADD, nid)
Shell_NotifyIcon(NIM_MODIFY,
(self.hwnd, 0, NIF_INFO, win32con.WM_USER+20,
hicon, "Balloon tooltip",msg,200,title))
# self.show_balloon(title, msg)
time.sleep(10)
DestroyWindow(self.hwnd)
def OnDestroy(self, hwnd, msg, wparam, lparam):
nid = (self.hwnd, 0)
Shell_NotifyIcon(NIM_DELETE, nid)
PostQuitMessage(0) # Terminate the app.
def balloon_tip(title, msg):
w=WindowsBalloonTip(title, msg)
if __name__ == '__main__':
balloon_tip("Title for popup", "This is the popup's message")
另一答案
我最近使用Plyer包来创建跨平台通知,没有痛苦,使用Notification
外观(它有许多其他值得一看的有趣的东西)。
非常好用:
from plyer import notification
notification.notify(
title='Here is the title',
message='Here is the message',
app_name='Here is the application name',
app_icon='path/to/the/icon.png'
)
另一答案
您将需要使用第三方python GUI库或pywin32库。与python捆绑在一起的GUI工具包TkInter不支持系统托盘弹出窗口。
支持使用系统托盘的多形式中性库:
- wxPython的
- PyGTK的
- PyQt的
支持使用系统托盘的Windows特定库:
- Bionai
在Windows上使用wxpython弹出系统托盘的信息/示例:
另一答案
这是使用python:module win10toast在Windows 10上显示通知的简单方法。
要求:
- pypiwin32
- setuptools的
安装:
>> pip install win10toast
例:
from win10toast import ToastNotifier
toaster = ToastNotifier()
toaster.show_toast("Demo notification",
"Hello world",
duration=10)
另一答案
在Linux系统中,您可以使用内置命令notify-send
。
ntfy
库可用于发送推送通知。
click here for ntfy documentation
安装:
sudo pip install ntfy
例子:
ntfy send "your message!"
ntfy send -t "your custom title" "your message"
以上是关于如何使用python创建系统托盘弹出消息? (视窗)的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Python 和 GTK 创建具有自定义文本和透明背景的状态图标/系统托盘图标?