StringProgressBar

Simple string progress bar made for discord bots. Its usable everywhere.


Keywords
String, Progress, Bar, progress-bar, python
License
MIT
Install
pip install StringProgressBar==1.1.1

Documentation

Project logo

StringProgressBar

GitHub Issues License

📝 Table of Contents

🧐 About

Simple string progress bar made for discord bots. Its usable everywhere.

Advantages

  • Simple
  • Lightweight
  • Fully customizable
  • 2 Different Styles

🏁 Getting Started

Installing

A step by step series of examples that tell you how to get a development env running.

pip install StringProgressBar

Splitbar Usage

from StringProgressBar import progressBar
# Assaign values to total and current values
total = 100
current = 50
# First two arguments are mandatory
bardata = progressBar.splitBar(total, current, [optional parameters])
# Get the progressbar
print(bardata[0])
# Get the percentage
print(bardata[1])

Filledbar Usage

from StringProgressBar import progressBar
# Assaign values to total and current values
total = 100
current = 50
# First two arguments are mandatory
bardata = progressBar.filledBar(total, current, [optional parameters])
# Get the progressbar
print(bardata[0])
# Get the percentage
print(bardata[1])

Optional Parameters

Parameter name Type Default Description
size Integer 40 Determines the length of the bar
line String ▬ and □ Determines the Static part of the bar
slider String 🔘 and ■ Determines the Progressive part of the bar

⛏️ Built Using

📝 License

This project is MIT licensed.

✍️ Authors