项目作者: WonderboyFromMars

项目描述 :
Small console progressbar
高级语言: Swift
项目地址: git://github.com/WonderboyFromMars/swift-pb.git
创建时间: 2018-12-09T13:59:25Z
项目社区:https://github.com/WonderboyFromMars/swift-pb

开源协议:

下载


swift-pb

Swift-Pb is a port of the excellent rust pb crate! I started this as an experimental project to learn the swift programming language and use it outside of IOS or MacOS.

Example usage

  1. var pb = ProgressBar(total: 100_000)
  2. pb.showTick = true
  3. pb.format("╢▌▌░╟")
  4. pb.showTimeLeft = false
  5. pb.showPercent = false
  6. pb.showSpeed = true
  7. pb.units = .Bytes
  8. for _ in 0..<100_000 {
  9. usleep(100)
  10. let _ = pb.add(1)
  11. }