Giter Club home page Giter Club logo

Comments (3)

jpiper avatar jpiper commented on September 3, 2024

This would be relatively easy to add, but I'm wondering about the best way to implement it. Do you think there should be a small buffer (n lines under the progress bar), or maybe fill the rest of the terminal window with the puts() statements?

from clint.

jpiper avatar jpiper commented on September 3, 2024

Actually, thinking about it, this would require changing progress.bar (which is currently a function) to be a class. It would have an iterable magic method similar to what it currently has, and other methods for printing to the screen, so would require a big refactor. You'd also have to do your for loops like so instead

newbar = progress.bar()
for i in newbar(range(100)):
    ...

I'll see if I can knock together a proof of principle.

In the mean time, you can use sys.stderr.write() to put stuff before the progress bar;

for i in progress.bar(range(100)):
    sleep(random() * 0.2)
    sys.stderr.write("Progress: \t")

will yield
>>> Progess: [######## ] 27/100 - 00:00:05

but note, this will redraw on every iteration, so is likely only useful for when your iterations are slow (or few)

from clint.

ludovic-gasc avatar ludovic-gasc commented on September 3, 2024

I don't know, each solution is good, but it could be complicated to implement, couldn't it ?

Maybe the easiest way to implement this, we should only authorize one string without line breaks by iteration, and put the string at the right of the progress bar.
It's enough in the most cases.

Ideally, it could be wonderful to have the three solutions ;-)

from clint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.