如何使用python创建系统托盘弹出消息? (视窗)

时间:2013-04-10 08:51:59

标签: python popup system-tray

我想知道如何使用python创建系统托盘弹出消息。我已经在很多软件中看到了这些软件,但很难找到资源来轻松地使用任何语言。有人知道某些库在Python中这样做吗?

6 个答案:

答案 0 :(得分:41)

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")

答案 1 :(得分:19)

我最近使用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'
)

答案 2 :(得分:5)

您需要使用第三方python GUI库或pywin32库。与python捆绑在一起的GUI工具包TkInter不支持系统托盘弹出窗口。

支持使用系统托盘的多形式中性库:

  • 的wxPython
  • PyGTK的
  • PyQt的

支持使用系统托盘的Windows特定库:

  • pywin32

在Windows上使用wxpython系统托盘弹出窗口的信息/示例:

答案 3 :(得分:4)

以下是使用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)

Resultant of the code

答案 4 :(得分:3)

在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"

答案 5 :(得分:1)

Windows

现在有一种使用Python/Winrt来实现此目标的正式方法,github解释了如何将UWP API映射到python的。

official UWP documentation之后,我设法显示了一个小的通知,该通知也出现在Windows通知中心中:

import winrt.windows.ui.notifications as notifications
import winrt.windows.data.xml.dom as dom

#create notifier
nManager = notifications.ToastNotificationManager
notifier = nManager.create_toast_notifier();

#define your notification as string
tString = """
<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Sample toast</text>
            <text>Sample content</text>
        </binding>
    </visual>
</toast>
"""

#convert notification to an XmlDocument
xDoc = dom.XmlDocument()
xDoc.load_xml(tString)

#display notification
notifier.show(notifications.ToastNotification(xDoc))

设置仅限于库的安装

pip install winrt

奖励macOS

我还找到了一种通过使用AppleScript在macOS中执行此操作的方法,以下代码的目标是构建将通过python os.system

执行的AppleScript代码。
import os

def displayNotification(message,title=None,subtitle=None,soundname=None):
    """
        Display an OSX notification with message title an subtitle
        sounds are located in /System/Library/Sounds or ~/Library/Sounds
    """
    titlePart = ''
    if(not title is None):
        titlePart = 'with title "{0}"'.format(title)
    subtitlePart = ''
    if(not subtitle is None):
        subtitlePart = 'subtitle "{0}"'.format(subtitle)
    soundnamePart = ''
    if(not soundname is None):
        soundnamePart = 'sound name "{0}"'.format(soundname)

    appleScriptNotification = 'display notification "{0}" {1} {2} {3}'.format(message,titlePart,subtitlePart,soundnamePart)
    os.system("osascript -e '{0}'".format(appleScriptNotification))

使用asis:

displayNotification("message","title","subtitle","Pop")

最后的记录

我已经将所有先前的代码总结为两个要点

Windows

macOS