https://github.com/n3rdium/pytaskbar
The Ultimate python taskbar progress package!
https://github.com/n3rdium/pytaskbar
easy-to-use python python-3 python-module python-package python-packages taskbar windows
Last synced: 4 months ago
JSON representation
The Ultimate python taskbar progress package!
- Host: GitHub
- URL: https://github.com/n3rdium/pytaskbar
- Owner: N3RDIUM
- License: mit
- Created: 2021-05-21T06:49:01.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T11:20:00.000Z (over 1 year ago)
- Last Synced: 2025-01-30T13:48:48.089Z (5 months ago)
- Topics: easy-to-use, python, python-3, python-module, python-package, python-packages, taskbar, windows
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 18
- Watchers: 1
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# PyTaskbar
### The ultimate taskbar progress python package!

[Docs Here!](https://github.com/somePythonProgrammer/PyTaskbar/blob/main/DOCS.md)
#### Works for both terminals and GUIs!
## Requirements:
comtypes
PyGetWindow## **Installation**
[click here](https://github.com/somePythonProgrammer/PyTaskbar/blob/main/DOCS.md#installation)
## **Example**:import time
import PyTaskbarprog = PyTaskbar.Progress()
prog.init()prog.setState('loading')
time.sleep(5)prog.setState('normal')
for i in range(100):
prog.setProgress(i)
time.sleep(0.05)
prog.setProgress(0)prog.setState('warning')
for i in range(100):
prog.setProgress(i)
time.sleep(0.05)prog.setProgress(0)
prog.setState('error')for i in range(100):
prog.setProgress(i)
time.sleep(0.05)prog.setProgress(0)
prog.setState('done')
while True:
time.sleep(1)
print('close me!')
### Happy Coding!