Skip to content

hainm/juprog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

juprog

Circle progress for Jupyter notebook

Basic Example

from time import sleep
from juprog import CircleProgress

sequence = range(10)
for x in CircleProgress(sequence):
    # fake long process
    sleep(0.2)

juprog

Install

Release

    pip install juprog

Development version

    pip install git+https://github.com/hainm/juprog

Acknowledgement

Use progress-circle for displaying progress.