Author Topic: Progress bar for your for loops  (Read 730 times)

0 Members and 1 Guest are viewing this topic.

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Progress bar for your for loops
« on: January 13, 2016, 05:21:58 pm »
I found this on Reddit, it's one of them libs that you never knew you wanted until you see it.

https://pypi.python.org/pypi/tqdm
>>>import this
-----------------------------

Offline riptorrent

  • /dev/null
  • *
  • Posts: 8
  • Cookies: 0
    • View Profile
Re: Progress bar for your for loops
« Reply #1 on: January 19, 2016, 04:42:06 pm »
Nice tip. I just learned of this on twitter the other day.  If you happen to be using tkinter  and python3 there is also ttk.progressbar.  You are right though, I find myself looking for a reason to use these types of things when I see them.