Socket
Socket
Sign inDemoInstall

prygress

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prygress

Threaded progress bar for running functions


Maintainers
1

Readme

Give yourself something to watch while your long calls are made. Add the '@progress' decorator to your functions, thats it!

from prygress import progress
from time import sleep

@progress
def wait_with_me():
    sleep(10)

wait_with_me()
................................................ finished.

To customize your bar, just add one or all of these params to the decorator:

@progress(char='.', pause=0.2)

Full documentation available at https://github.com/dboudwin/prygress

FAQs


Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc