wtprogress
A python library for showing progress in windows terminal.
When you are running a long-running task in python in background, such as training a neural network, you may switch to your terminal frequently to check the progress. With this library, your python script can show progress in your taskbar, and you can easily see it without switching to your terminal.
Note: this library only supports Windows Terminal. Conhost doesn't have this feature.
Example
import wtprogress,time
def main():
for i in range(1,101):
print("\rProgress: {}%".format(i),end="",flush=True)
wtprogress.show(i)
time.sleep(0.1)
print("\nTask finished")
wtprogress.close()
main()
Release files for wtprogress 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| wtprogress-0.0.1.tar.gz | 4.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| wtprogress-0.0.1-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 6.9 kB
Release files / wtprogress-0.0.1.tar.gz
| Download URL | wtprogress-0.0.1.tar.gz |
|---|---|
| Size | 4.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c817dcb2ea71ba3321d9b64b046ae0331ab4a72b5ff276718a4b94b8726087db
|
|
BLAKE2b-256 checksum How to use checksums |
72ce1e407a92df690268e42417e1825bf525ea7c90b0ff2b65f5d861b72c6fa9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.10
|
Release files / wtprogress-0.0.1-py2.py3-none-any.whl
| Download URL | wtprogress-0.0.1-py2.py3-none-any.whl |
|---|---|
| Size | 2.9 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
449997042f0d6288c4da4fa53d81d8434ffebd9238408e3f1922fc8cb2d1b0a3
|
|
BLAKE2b-256 checksum How to use checksums |
1af60551ae2c45bb73ac8cb0e2bd2469ca627ec644e91c73c2f1377239825040
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.10
|