datafolklabs / cement

Application Framework for Python
http://builtoncement.com
BSD 3-Clause "New" or "Revised" License
1.24k stars 119 forks source link

TQDM Extension #399

Open derks opened 8 years ago

derks commented 8 years ago

Might be cool to build a simple extension to integrate progress bars.

akhilman commented 8 years ago

I am using https://pypi.python.org/pypi/progressbar2 for now, also has idea to implement extension for cement but have no clue how cement integration can simplify already simple usage.

derks commented 8 years ago

Agreed... usage for progress bars is pretty simple for most cased, though there are other cases thight might make sense to have a helper for it. For example, click's implementation of it:

akhilman commented 8 years ago

Is it ok if interface will be almost like click's one but accessible through app.progressbar?

I would like to do this task. But not now.

derks commented 8 years ago

Yeah, I would probably approach it that way.