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

patiencebar

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

patiencebar

Terminal progress bar compatible with multi-threading

  • 1.0.4
  • PyPI
  • Socket score

Maintainers
1

patiencebar

Terminal progress bar compatible with multi-threading

Built by Guillaume Schworer <https://github.com/ceyzeriat>_. Licensed under the GNU General Public License v3 or later (GPLv3+) license (see LICENSE).

Installation

Just run

::

pip install patiencebar

to get the most recent stable version.

Usage

The main entry points are the patiencebar.Patiencebar and patiencebar.Patiencebarmulti classes. You'll just use it like this:

::

import patiencebar as PB

n_calc = 34
pb = PB.Patiencebar(valmax=n_calc, barsize=50, title="Test bar")
for i in range(n_calc):
    dostuff()
    pb.update()

More usage details, see example.py <https://github.com/ceyzeriat/patiencebar/blob/master/example.py>_)

Documentation

All the options are documented in the docstrings for the Patiencebar and Patiencebarmulti classes. These can be viewed in a Python shell using:

::

import patiencebar as PB
print(PB.Patiencebar.__doc__)
print(PB.Patiencebarmulti.__doc__)

or, in IPython using:

::

import patiencebar as PB
PB.Patiencebar?
PB.Patiencebarmulti?

License

Copyright 2016 Guillaume Schworer

patiencebar is free software made available under the GNU General Public License v3 or later (GPLv3+) license (see LICENSE).

Changelog

1.0.0 (2016-05-03) ++++++++++++++++++

  • Initial release.

Keywords

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