统计工作时间分配的小工具V1.0

需求场景

使用PC的打工人,在编写每日的复盘日报时,总会有点儿痛苦,感叹今天一天时间都去哪儿了。

软件截图

image.png
显示耗时TOP5的窗口
image.png
image.png
# encoding=utf-8
import ctypes
import inspect
import threading
import time
import tkinter
import tkinter.messagebox
import win32gui
import matplotlib.pyplot as plt


def returnSum(myDict):
    temp_sum = 0
    for i in myDict:
        temp_sum = temp_sum + myDict[i]
    return temp_sum


def drawPie():
    plt.rcParams['font.sans-serif'] = ['SimHei']  # 用来正常显示中文标签
    plt.rcParams['axes.unicode_minus'] = False  # 用来正常显示负号

    temp = sorted(a.items(), key=lambda x: x[1], reverse=True)
    labels = temp[0][0], temp[1][0], temp[2][0], temp[3][0], temp[4][0]
    sizes = [temp[0][1], temp[1][1], temp[2][1], temp[4][1], temp[4][1]]
    explode = (0.4, 0.1, 0.1, 0.1, 0.1)  # only "explode" the 2nd slice (i.e. 'Hogs');这里的四个参数,指分开的距离,值越大分得越开。

    fig1, ax1 = plt.subplots()
    ax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%', shadow=True, startangle=90)
    ax1.axis('equal')  # Equal aspect ratio ensures that pie is drawn as a circle.

    # plt.savefig('Demo_official.jpg')      # 保存图片
    plt.show()


def _async_raise(tid, exctype):
    tid = ctypes.c_long(tid)
    if not inspect.isclass(exctype):
        exctype = type(exctype)
    res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(exctype))
    if res == 0:
        raise ValueError("invalid thread id")
    elif res != 1:
        ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
        raise SystemError("PyThreadState_SetAsyncExc failed")


def stop_thread(thread):
    _async_raise(thread.ident, SystemExit)
    print("关闭")


def getHandle():
    while True:
        if b['state']:
            # 获取前台窗口的句柄
            handle = win32gui.GetForegroundWindow()
            # 根据前台窗口的句柄获取线程tid和进程pid
            # tid, pid = win32process.GetWindowThreadProcessId(handle)
            # 根据前台窗口的进程pid获取进程名称
            # process_name = psutil.Process(pid).name()
            w_name = win32gui.GetWindowText(handle)
            # 如果前端窗口存在字典中,则在该key对应的value+1;否则在字典中新建一个key并赋值为1。
            if w_name in a:
                a[w_name] = a[w_name] + 1
            else:
                a[w_name] = 1
            if len(a.keys()) >= 5:
                show()
                btn4['state'] = tkinter.NORMAL
                tkinter.Label(root, width=100, height=2, text="运行窗口数量为:" + str(len(a.keys())), font=fontset,
                              bg='#D1EEEE').grid(row=0, column=1)
            else:
                tkinter.Label(root, width=100, height=2, text="运行窗口数量不足5个!", font=fontset, bg='#D1EEEE').grid(row=0,
                                                                                                              column=1)
            tkinter.Label(root, text=returnSum(a), width=10, height=2, bg='#D1EEEE', anchor='center',
                          font=fontset).grid(row=0, column=2)
            time.sleep(1)
        else:
            time.sleep(1)
            pass


def show():
    s1 = sorted(a.items(), key=lambda x: x[1], reverse=True)
    s2 = s1[0:5]
    # 在窗口内创建按钮,以表格的形式依次排列
    for i in range(5):
        tkinter.Label(root, text=s2[i][0], width=100, height=2, bg='#D1EEEE', anchor='e', justify='right',
                      wraplength=800, font=fontset).grid(row=i + 1, column=1)
        tkinter.Label(root, text=s2[i][1], width=10, height=2, bg='#D1EEEE', anchor='center', justify='right',
                      font=fontset).grid(row=i + 1, column=2)
    # # 在第5行第11列添加一个Label标签
    # Label(win, text="C语言中文网", fg='blue', font=('楷体', 12, 'bold')).grid(row=4, column=11)

    # text.delete("1.0", END)
    # text.insert(END, s2)


def start_tj():
    b['state'] = True
    btn1['state'] = tkinter.DISABLED
    btn2['state'] = tkinter.NORMAL


def stop_tj():
    b['state'] = False
    btn2['state'] = tkinter.DISABLED
    btn1['state'] = tkinter.NORMAL


def save_tj():
    s = sorted(a.items(), key=lambda x: x[1], reverse=True)

    fw = open("test.txt", 'w', encoding='utf-8')  # 将要输出保存的文件地址
    for line in range(len(s)):  # 读取的文件
        fw.write(s[line][0])
        fw.write("++++++++++++++++++++++++++++++++++++++++")
        fw.write(str(s[line][1]))
        fw.write("\n")  # 换行


if __name__ == '__main__':
    a = {"processName1": 1}
    b = {'state': False}

    root = tkinter.Tk()
    root.minsize(980, 0)
    root.maxsize(980, 300)
    root.title("前端窗口时间统计程序")

    fontset = ('黑体', 12)

    # text = tkinter.Text(root, width=100, wrap="word")
    # text.insert(END, "前端窗口时间统计程序")
    # text.place(x=10, y=90)

    #
    # label1 = tkinter.Label(root, text='213')  # 生成标签并将标签添加到主窗口
    # label1.place(x=10, y=90)

    btn1 = tkinter.Button(root, text='开始', width=10, height=2, command=start_tj)  # 生成button
    btn1.grid(row=0, column=0)

    btn2 = tkinter.Button(root, text='暂停', width=10, height=2, command=stop_tj)  # 生成button
    btn2.grid(row=1, column=0)

    btn3 = tkinter.Button(root, text='保存结果', width=10, height=2, command=save_tj)  # 生成button
    btn3.grid(row=2, column=0)

    btn4 = tkinter.Button(root, text='统计图', width=10, height=2, command=drawPie)  # 生成button
    btn4.grid(row=3, column=0)
    btn4['state'] = tkinter.DISABLED

    btn5 = tkinter.Button(root, text='功能预留', width=10, height=2, command=drawPie)  # 生成button
    btn5.grid(row=4, column=0)
    btn5['state'] = tkinter.DISABLED

    btn6 = tkinter.Button(root, text='功能预留', width=10, height=2, command=drawPie)  # 生成button
    btn6.grid(row=5, column=0)
    btn6['state'] = tkinter.DISABLED

    t1 = threading.Thread(target=getHandle)
    t1.start()  # 启动线程,即让线程开始执行

    # t2 = threading.Thread(target=drawPie((u'周', '吴', '郑', '王'),(15, 30, 45, 10)))
    # t2.start()  # 启动线程,即让线程开始执行

    root.mainloop()
    stop_thread(t1)



©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容