README
progressbar
A very simple thread-safe progress bar which should work on every OS without problems. I needed a progressbar for croc and everything I tried had problems, so I made another one.
Install
go get -u github.com/schollz/progressbar
Usage
Basic usage:
bar := progressbar.New(100)
for i := 0; i < 100; i++ {
bar.Add(1)
time.Sleep(10 * time.Millisecond)
}
which looks like:
100% |████████████████████████████████████████| [1s:0s]
The times at the end show the elapsed time and the remaining time, respectively.
Contributing
Pull requests are welcome. Feel free to...
- Revise documentation
- Add new features
- Fix bugs
- Suggest improvements
License
MIT
Documentation
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProgressBar ¶
ProgressBar is a thread-safe, simple progress bar
Example ¶
Code:
bar := New(10) bar.SetMax(100) bar.SetSize(10) bar.Reset() time.Sleep(1 * time.Second) bar.Add(10)
10% |█ | [1s:9s]
func (*ProgressBar) Add ¶
func (p *ProgressBar) Add(num int) error
Add with increase the current count on the progress bar
func (*ProgressBar) Reset ¶
func (p *ProgressBar) Reset()
Reset will reset the clock that is used to calculate current time and the time left.
func (*ProgressBar) SetMax ¶
func (p *ProgressBar) SetMax(num int)
SetMax sets the total number of the progress bar
func (*ProgressBar) SetSize ¶
func (p *ProgressBar) SetSize(size int)
SetSize sets the size of the progress bar.
func (*ProgressBar) SetTheme ¶
func (p *ProgressBar) SetTheme(theme []string)
func (*ProgressBar) SetWriter ¶
func (p *ProgressBar) SetWriter(w io.Writer)
SetWriter will specify a different writer than os.Stdout