Lowbar Versions Save

The simplest no-nonsense progress bar for python

v1.1.4

1 year ago
  • Made update_smooth() partially non-blocking, instead of a full block

v1.1.3

1 year ago
  • PyPi Re-Release with updated README.md

v1.1.2

1 year ago
  • Reflected license changes in source (Because I forgot to ;-;)

v1.1.1

1 year ago
  • Switched from
    sys.stdout.write(text)
    sys.stdout.flush()
    
    to
    print(text, end='', flush=True)
    

v1.1.0

1 year ago
  • Switched to the MIT License
  • Added context manager support

v1.0.0

1 year ago
  • First stable release

v0.1.7

1 year ago
  • Raise TypeError when incorrect argument types are given to certain functions

v0.1.6

1 year ago
  • PyPi package release

v0.1.5

1 year ago
  • Added a space before single digit percentage indicator, so the bar doesn't move

v0.1.4

1 year ago
  • Fixed broken update (0.1.3)