New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

beautider

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beautider

Module for creating progress bars.

  • 0.1.5
  • PyPI
  • Socket score

Maintainers
1

Beautider

Module for creating progress bars.

Examples

Example in Lib

You can see an example of how to use the library using this code:

from beautider import *

load = Loader().example()

You should see the following:

img

Another example

import time
from beautider import *

load = Loader(description='I load nothing')

while True:
    for _ in range(1, 101):
        load.update(1)
        time.sleep(0.1)
        load.pr_load()
    for _ in range(1, 101):
        load.update(-1)
        time.sleep(0.1)
        load.pr_load()

img img

Args

  • size - The larger this value, the smaller the bar progress. (if your max_value very large, then the size value should be set larger.)
  • colors - Use of colours (True/False)
  • description - Description next to progress bar
  • complete_symbol - Symbols that are responsible for the filled part of the progress bar
  • uncomplete_symbol - Symbols that are responsible for the unfilled part of the progress bar
  • borders - Borders of progress bar (for example: '[]', '{}', '--', '[}')
  • units - Units of measurement (default %)
  • max_value - Progress bar ends here
  • min_value - Progress bar started from here
  • show_of - Shows text "x in max_value units"
  • show_speed - Shows speed

Developer

By bolgaro4ka. Link

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