Skip to content

Waqar144/progressbar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

Progress bar is a small module written in vlang to create progress bar on cli. It's a port of doches/progressbar. It aims to provide complete functionality of the original project.

Currently only progress bar has been implemented and nothing is being exported.

Usage

Statusbar

import statusbar
fn main() {
    s := statusbar.new_statusbar('Label')
    go s.start()
    //logic..
    s.finish()
}

Progressbar

demo.v gives an overview of how to use this module. Example:

import progressbar

fn main() {
  p := progressbar.Progressbar{}
  steps := 50
  p.new('Label', steps)
  for i := 0; i < steps; i++ {
      // logic...
        p.increment()
  }
}
//when you are done call finsih()
p.finish()

You can pass in your own style using new_with_format(label string, max int, format []byte] instead of new():

p.new_with_format('Your Label', num_steps, [`O`,`.`,`O`]

Output:

Your Label O...................O ETA0h0m0s

Building

First clone the repo

https://github.com/Waqar144/progressbar.git

Then

cd progressbar
v build progressbar.v

Or if you want to build it as a module

v build module ~/path/to/dir/progressbar
//to build the stausbar module
v build module ~/path/to/dir/statusbar

Running the demo

v run demo.v

Contributing

Feel free to clone and contribute. All contributions are welcome.

License

MIT

About

An easy to use V library for creating progress bar

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages