FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

jonas37/ipython_progresstracker: Progresstracker for ipython notebooks · GitHub

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Progresstracker

Progresstracker for ipython notebooks

Usage:

from time import sleep
from progresstracker import progresstracker

steps_in_loop = 100
prog = progresstracker(steps_in_loop) #init object with number of loops to be executed

for i in range(steps_in_loop):  
    prog.step_print()  #count step and print output
    #progress, current_run_time, expected_time, expected_rest_time = prog.step() #perform step and get times if you want to use your own display function
    sleep(0.1)  #do something

Output should look like this:

About

Progresstracker for ipython notebooks

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Contributors

Languages


Back | FazBrowse Home | New Git URL