{"id":14976972,"url":"https://github.com/n3rdium/pytaskbar","last_synced_at":"2026-04-01T16:48:47.293Z","repository":{"id":50404412,"uuid":"369440593","full_name":"N3RDIUM/PyTaskbar","owner":"N3RDIUM","description":"The Ultimate python taskbar progress package!","archived":false,"fork":false,"pushed_at":"2025-06-07T08:11:06.000Z","size":35,"stargazers_count":20,"open_issues_count":3,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T10:13:50.200Z","etag":null,"topics":["easy-to-use","python","python-3","python-module","python-package","python-packages","taskbar","windows"],"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/N3RDIUM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2021-05-21T06:49:01.000Z","updated_at":"2025-06-07T08:28:16.000Z","dependencies_parsed_at":"2024-09-27T23:10:36.416Z","dependency_job_id":null,"html_url":"https://github.com/N3RDIUM/PyTaskbar","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.03125,"last_synced_commit":"e9424ec8fe317722cb904a96970f4cf9aef8f02a"},"previous_names":["somepythonprogrammer/pytaskbar"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/N3RDIUM/PyTaskbar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N3RDIUM%2FPyTaskbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N3RDIUM%2FPyTaskbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N3RDIUM%2FPyTaskbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N3RDIUM%2FPyTaskbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/N3RDIUM","download_url":"https://codeload.github.com/N3RDIUM/PyTaskbar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N3RDIUM%2FPyTaskbar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270988240,"owners_count":24680670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["easy-to-use","python","python-3","python-module","python-package","python-packages","taskbar","windows"],"created_at":"2024-09-24T13:54:46.796Z","updated_at":"2026-04-01T16:48:47.289Z","avatar_url":"https://github.com/N3RDIUM.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyTaskbar\nThe ultimate taskbar progress python package!\n\n## About\nThis is a wrapper API around the TaskbarLib.tlb (Windows 7+) that makes it easy\nto show progress in the taskbar icon, a great plus when it comes to UX for your\ndesktop/TUI application. Simple API, works with any GUI framework!\n\n## Installation\nThis package is available on PyPI! For most cases, installation is as simple as:\n```\npip install PyTaskbar\n```\n\nIf you want to install latest git instead:\n```\npip install git+https://github.com/N3RDIUM/PyTaskbar.git\n```\n\n## Usage\nHere's a minimal usage example:\n\n```python\nimport time\nfrom PyTaskbar import TaskbarProgress, ProgressType\n\n# This will target the terminal window.\nprogress = TaskbarProgress()\n\n# If you're using a GUI framework, pass the target window handle like so:\n# progress = TaskbarProgress(window_handle)\n\n# No progress\nprogress.set_progress_type(ProgressType.NOPROGRESS)\ntime.sleep(3)\n\n# Indeterminate progress state\nprogress.set_progress_type(ProgressType.INDETERMINATE)\ntime.sleep(3)\n\n# Normal (green) progress\nprogress.set_progress_type(ProgressType.NORMAL)\nfor i in range(100):\n    progress.set_progress(i)\n    time.sleep(0.05)\n\n# Paused (yellow) progress\nprogress.set_progress_type(ProgressType.PAUSED)\nprogress.set_progress(42)\ntime.sleep(2)\n\n# Error (red) progress\nprogress.set_progress_type(ProgressType.ERROR)\nprogress.set_progress(42)\ntime.sleep(2)\n\n# Flash the taskbar icon signalling that the task completed\nprogress.flash_done()\ntime.sleep(5)\n```\n\n## Thanks and citations\n- [@timminator](https://github.com/timminator) for helping fix the minimize bug\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn3rdium%2Fpytaskbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn3rdium%2Fpytaskbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn3rdium%2Fpytaskbar/lists"}