def do_konami(event): custom_formatters = [ formatters.Label(), formatters.Text(" "), formatters.Rainbow(formatters.Bar()), formatters.Text(" left: "), formatters.Rainbow(formatters.TimeLeft()), ] color_depth = ColorDepth.DEPTH_8_BIT with ProgressBar(formatters=custom_formatters, color_depth=color_depth) as pb: for i in pb(range(1000), label=""): time.sleep(0.001) print('Downloaded L33t Hax...')
def main(): true_color = confirm('Yes true colors? (y/n) ') custom_formatters = [ formatters.Label(), formatters.Text(' '), formatters.Rainbow(formatters.Bar()), formatters.Text(' left: '), formatters.Rainbow(formatters.TimeLeft()), ] if true_color: color_depth = ColorDepth.DEPTH_24_BIT else: color_depth = ColorDepth.DEPTH_8_BIT with ProgressBar(formatters=custom_formatters, color_depth=color_depth) as pb: for i in pb(range(20), label='Downloading...'): time.sleep(1)