No description
Find a file
2021-02-12 17:31:48 +00:00
docs Updating to use standard object and add docs 2017-04-19 11:09:15 +01:00
src Alter how bar is built to remove redundant slice 2021-02-12 17:30:48 +00:00
tests Updating to use standard object and add docs 2017-04-19 11:09:15 +01:00
.editorconfig Added ability to print to output other than stdout 2016-09-02 18:40:31 +01:00
.gitignore Updating to use standard object and add docs 2017-04-19 11:09:15 +01:00
.travis.yml Added ability to print to output other than stdout 2016-09-02 18:40:31 +01:00
LICENSE Initial commit 2016-04-14 13:32:53 +01:00
progress.gif Updating to use standard object and add docs 2017-04-19 11:09:15 +01:00
progress.nimble Update nimble package version 2021-02-12 17:31:48 +00:00
README.md Updating to use standard object and add docs 2017-04-19 11:09:15 +01:00

progress.nim Build Status

A simple progress bar for Nim.

Demo

Installation

nimble install progress

API Documentation

Usage

# os is only needed for `sleep`
import progress, os

var bar = newProgressBar()
bar.start()

for i in 1..100:
  # Do some work
  sleep(100)
  bar.increment()

bar.finish()