-
Notifications
You must be signed in to change notification settings - Fork 0
Extensions
dharm pimsen edited this page Apr 22, 2024
·
3 revisions
you can new issues for request new extensions
This extensions for show your progress
modify from damp11113-library
loading = indeterminateStatus(client)
loading.start()
time.sleep(5)
loading.stop()
l = LoadingProgress(client, total=100, color=True)
l.start()
for i in range(101):
l.current = i
l.desc = "loading..."
time.sleep(0.05)
l.stop()