Python声音和弹框提示
Python 声音和弹框提示
写后台监控程序,有时需要响铃或弹框提示用户。下面介绍 Python 在 Linux 系统中的提示方法:
1. 使用系统工具 paplay 播放当前目录下的音效文件 ring.wav 实现响铃
2. 用 tkinter 界面工具实现弹框
import tkinter as tk
import os
def show_messagebox(string):
os.environ["DISPLAY"]=":0.0"
root = tk.Tk()
root.title('消息框')
root.geometry('190x80+300+300')
label = tk.Label(root, text=string, font='宋体 -14', pady=8)
label.pack()
tk.mainloop()
def do_ring(times):
for i in range(0,times):
os.system("paplay {} --volume=32768".format('ring.wav'))
def warning(string):
print("do warning")
do_ring(10)
show_messagebox(string)
warning("测试一下")
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.