{"id":28794177,"url":"https://github.com/hzbd/notify-ui","last_synced_at":"2026-03-04T21:32:11.855Z","repository":{"id":296788260,"uuid":"994462301","full_name":"hzbd/notify-ui","owner":"hzbd","description":"simple notify ui with pyside6","archived":false,"fork":false,"pushed_at":"2025-06-27T04:24:19.000Z","size":3321,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-02T02:44:50.626Z","etag":null,"topics":["macos","macos-app","menu-bar","menubar","notify","pyside6","status-bar","statusbar","utility"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hzbd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-02T01:07:35.000Z","updated_at":"2025-07-28T06:49:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"7c38b957-d695-4e9f-bb13-d11d4a6e82c8","html_url":"https://github.com/hzbd/notify-ui","commit_stats":null,"previous_names":["hzbd/notify-ui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hzbd/notify-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzbd%2Fnotify-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzbd%2Fnotify-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzbd%2Fnotify-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzbd%2Fnotify-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hzbd","download_url":"https://codeload.github.com/hzbd/notify-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hzbd%2Fnotify-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30093786,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T20:42:30.420Z","status":"ssl_error","status_checked_at":"2026-03-04T20:42:30.057Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["macos","macos-app","menu-bar","menubar","notify","pyside6","status-bar","statusbar","utility"],"created_at":"2025-06-18T02:04:58.929Z","updated_at":"2026-03-04T21:32:11.837Z","avatar_url":"https://github.com/hzbd.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 桌面端状态通知App - NotifyPi\n\n![Demo](./screenshot.png)\n\n\nPi APP：任务跑完立马喊你，再也不用干等着！\n\n你是不是也遇到过这种情况——电脑跑着耗时任务，时不时就得瞅一眼进度，生怕错过完成时刻？\n\n用 Pi APP，任务结束第一时间提醒你！\n\n✅ 桌面弹窗 + 提示音——任务完成瞬间，立刻弹出通知，还有“哞哞”提示音，想忽略都难！\u003cbr\u003e\n✅ 远程任务也能管——服务器上的任务跑完了？配置好 Pi APP，它自动帮你盯着，不用再反复登录检查。\u003cbr\u003e\n✅ 解放双手和眼睛——该摸鱼摸鱼，该干活干活，任务结束 Pi APP 自然会叫你，再也不用守着进度条发呆！\u003cbr\u003e\n\n适用场景：\n\n* 代码编译/测试跑完了？——Pi APP 喊你来看结果！\n* 数据处理/模型训练结束？——不用再反复刷新，通知直接弹脸上！\n* 任何需要长时间等待的任务——挂上去，该干嘛干嘛，结束立马知道！\n\n\n## 开发环境准备\n\n```sh\n# 初始化开发环境\n$ python3 -m venv ~/.pyenvs/py3 \u0026\u0026 \\\n    source ~/.pyenvs/py3/bin/activate\n\n# 运行app\n$ git clone https://gitee.com/im623/notify_ui.git \u0026\u0026 \\\n    cd notify_ui \u0026\u0026 \\\n    pip install -r requirements.txt \u0026\u0026 \\\n    python pi_app.py\n```\n\n## 远端API应返回的JSON格式样例\n\n```json\n{\n  \"notifications\": [\n    {\n      \"title\": \"任务通知\",\n      \"message\": \"后台任务A已执行完成\",\n      \"timestamp\": \"2023-05-01 10:00:00\"\n    }\n  ]\n}\n```\n\n## 本地消息测试发送\n\n```sh\n$ curl -X POST -H 'Content-Type: application/json' \\\n    -d '{\"title\":\"测试\",\"message\":\"这是一条测试消息\"}' \\\n    http://localhost:8000\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhzbd%2Fnotify-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhzbd%2Fnotify-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhzbd%2Fnotify-ui/lists"}