Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lubar

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lubar

Pythonic progress bar

  • 0.0.4
  • PyPI
  • Socket score

Maintainers
1

Basic usage:

import time

from lubar import ProgressBar

total = 100
bar = ProgressBar(total)
for i in bar(range(total)):
    time.sleep(0.05)

Keyword Arguments:

  • size: size of the progress bar (default to 37)

  • description: progress description (default to '')

  • file: file object to print progress bar to it (default to sys.stdout)

  • progressed_char: progress character (default to '#')

  • remained_char: remain character (default to '.')

  • enclosing_chars: characters to enclose progress bar between them (default to ('[', ']'))

  • join_char: character to join progress bar parts (default to ' ')

Note: All attributes can be updated at run time. I designed this progress bar to train deep learning models in PyTorch. I needed a progress bar to update it description in training loops to print model's losses values.

Special credit to eusoubrasileiro. I designed this progress based on his answer in Stack Overflow

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc