Python Forum
How can I add a progress bar for my software?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I add a progress bar for my software?
#4
Agree with Buran, don't recommend progress as that does not seem to support Python 3.7+.
Install progressbar2 by pip install progressbar2
Then can create the progress bar, and update it every few thousand lines processed.
import time
import progressbar
for i in progressbar.progressbar(range(10)) :
    time.sleep(1)
print("Done")
Reply


Messages In This Thread
RE: How can I add a progress bar for my software? - by jefsummers - Nov-12-2019, 04:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Progress bar bnadir55 1 1,841 Apr-11-2022, 01:52 PM
Last Post: deanhystad
  Progress Indicator for Xmodem 0.4.6 KenHorse 1 1,986 Jan-30-2021, 07:12 PM
Last Post: bowlofred
  wget progress bar anasrocks 1 4,745 Jun-06-2019, 03:12 PM
Last Post: heiner55
  Progress Finished Question malonn 32 17,696 May-23-2018, 02:43 AM
Last Post: malonn
  how to progress with py jakegold98 1 2,644 Dec-05-2017, 02:58 AM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020