Skip to main content

Easy and simple loading bar for python.

Project description

Easy and simple loading bar for python.

CLASSES:
    baro.thin(total, color_start=fore.GREEN, color_end=fore.BLUE)
    baro.line(total, color_start=fore.GREEN, color_end=fore.BLUE)
    baro.bar(total, color_start=fore.GREEN, color_end=fore.BLUE)
    baro.spin(total, color_start=fore.GREEN, color_end=fore.BLUE)
    baro.spin2(total, color_start=fore.GREEN, color_end=fore.BLUE)
    baro.customspin(total, chars, color_start=fore.GREEN, color_end=fore.BLUE)
    baro.timed(total, desc='', color_start=fore.GREEN, color_end=fore.BLUE)

FORE, STYLE, BACK:
    fore.BLACK, fore.RED, fore.GREEN, fore.YELLOW, fore.BLUE, fore.MAGENTA, fore.CYAN, fore.WHITE, fore.RESET

    style.BOLD, style.DIM, style.NORMAL, style.RESET_ALL

    back.BLACK, back.RED, back.GREEN, back.YELLOW, back.BLUE, back.MAGENTA, back.CYAN, back.WHITE, back.RESET

How to use baro!

import baro

baro.thin(100).start().close()

bar = baro.line(100)
bar.start()
bar.close()

bar2 = baro.bar(100)
with bar2 as bar_2:
    for iterable in bar2:
        # do something
        bar_2.update(iterable)
        bar_2.sleep(0.1)

bar3 = baro.spin(100).start().close()

bar4 = baro.spin2(100).start().close()

bar5 = baro.custom(100, ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']).start().close()

bar6 = baro.timed(100, 'This is a timed bar').start().close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

baro-5.7.2.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

baro-5.7.2-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page