Skip to content

Commit

Permalink
how to kill tqdm
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Apr 25, 2024
1 parent 3bd2f3f commit a00d480
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
- [Lua](notes/programming/lua.md)
- [Perl](notes/programming/perl.md)
- [Python](notes/programming/python.md)
- [tqdm](notes/programming/tqdm.md)
- [Mathematica](notes/programming/mathematica.md)
- [MATLAB](notes/programming/matlab.md)
- [MIPS Assembly](notes/programming/mips.md)
Expand Down
8 changes: 8 additions & 0 deletions src/notes/programming/tqdm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# tqdm

kill the current tqdm progress bar:

```python
from tqdm import tqdm
tqdm._instances.pop().close()
```

0 comments on commit a00d480

Please sign in to comment.