progress
A simple progress bar for Nim.
Summary
| Latest Version | Unknown |
|---|---|
| License | BSD3 |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install progress
choosenim install progress
git clone https://github.com/euantorano/progress.nim
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| progress | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://github.com/euantorano/progress.nim |
|---|---|
| Homepage | https://github.com/euantorano/progress.nim |
| Registry Source | nimble_official |
README
progress.nim 
A simple progress bar for Nim.

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()