We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting option keep=False does not affect the behavior of the printing of the inner track.
keep=False
The text was updated successfully, but these errors were encountered:
Thanks for reporting! Yes, sorry, the option is inactive yet. I'll add support for this feature in the future.
For now, if your internal loop doesn't change its length, you can keep it with the help of the cycle option:
cycle
from ipypb import track from time import sleep pb = track(total=10, cycle=True) # fix internal loop progressbar while True: # external loop sleep(0.2) for i in pb: # start over on each external loop iteration sleep(0.2)
Sorry, something went wrong.
No branches or pull requests
Setting option
keep=False
does not affect the behavior of the printing of the inner track.The text was updated successfully, but these errors were encountered: