-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
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
tqdm: add examples #15751
base: main
Are you sure you want to change the base?
tqdm: add examples #15751
Changes from all commits
93147ec
909060a
e1a9fc8
5103dd7
744515f
5d327f1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,8 +1,16 @@ | ||||||||||||||||||||||||||||||
# tqdm | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
> Create a progress bar. | ||||||||||||||||||||||||||||||
> Show progress over time of a command. | ||||||||||||||||||||||||||||||
> More information: <https://tqdm.github.io/>. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
- Show iterations per second and use `stdout` afterwards: | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
`{{seq 10000000}} | tqdm | {{command}}` | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
- Create a progress bar: | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
`seq 10000000 | tqdm --total 10000000 --null` | ||||||||||||||||||||||||||||||
`{{seq 10000000}} | tqdm --total 10000000 | {{command}}` | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
- Create an archive out of a directory and use the file count of that directory to create a progress bar: | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
`zip -r {{backup.zip}} {{dir}} | tqdm --total $(find {{dir}} | wc -l) --unit files --null` | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Sadly this makes the command longer but hopefully it clarifies things There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Suggested change
I wasn't able to find any compiled info on this on its own (search engines suck), but chatgpt told me that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah sorry, that's what I implied to say. I was asking for opinions if the unsupported landscape is small enough so that we can use use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.