kuk/log-progress

Getting message: VBox(children=(HTML(value=''), IntProgress(value=0)))

Opened this issue · 3 comments

I ran this code:

import time
from time import sleep

def check_url(url):
    sleep(0.1)

urls = range(100)

for url in log_progress(urls, every=1):
    check_url(url)
    
for index in log_progress(range(100), every=1):
#     print("testing")
    sleep(0.1)

and it resulted in:
VBox(children=(HTML(value=''), IntProgress(value=0)))

Am I missing something?
Running on Windows 10:
anaconda custom py36h363777c_0
anaconda-client 1.7.2 py36_0
anaconda-navigator 1.9.7 py36_0
anaconda-project 0.8.2 py36_0

Are you running in JupyterLab or JupyterNotebook?

I seem to have the same problem in Lab but no problem in Notebook. Unsure of solution however.

dupe of #14 i think.