GoProBar is a simple rendering progress bar in terminal application / CLI
Use the Go Modules to install GoProBar.
go get github.com/seyuta/goprobar
import (
probar "github.com/seyuta/goprobar"
)
func main() {
total := 100000
for i := 1; i <= total; i++ {
probar.ProgressBar(i, total)
}
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.