I like working in an IJulia notebook and would like to print the status of some process on the same line over and over again.
Taking the example given in the link below, we desire some output:
Downloading File FooFile.txt [47%]
and want to avoid something like this:
Downloading File FooFile.txt [47%]
Downloading File FooFile.txt [48%]
Downloading File FooFile.txt [49%]
In case of Python I found an answer here.
What would be a solution?