
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
basicprogressbar
Advanced tools
Progress bar for console and discord
installation:
pip install basicprogressbar # for basic features
pip install basicprogressbar[timer] # for pretty time support
pip install basicprogressbar[all] # for all features
from basicprogressbar import BasicProgressBar
Arguments:
current:float = 0 # current progress
total:float = -1 # total progress '-1' for unlimited
posttext:str="" # text behind the bar
pretext:str="Progress:" # text before the bar
length:int=60 # length of the bar
endtext:str="" # text after the bar when done
endline:str='\r' # endline character to rewite same line
showtime:bool=False # show remaining time
Basic Examples:
prog = BasicProgressBar(1, 50, pretext="Before bar:", showtimer=True)
for i in range(51):
time.sleep(0.1)
prog.current = i
prog.endtext = (f"I ended on {i}")
prog.bar(True)
for i in range(11):
time.sleep(0.1)
BasicProgressBar(i, 10).bar(True)
prog = BasicProgressBar(1, 10)
for i in range(11):
time.sleep(0.1)
prog.current = i
prog.posttext = f"processing {i}"
print(prog.bar(), end=prog.endline)
prog = BasicProgressBar()
for i in range(25):
time.sleep(0.1)
print(prog.next(), end="\r")
print()
Progress bar for discord
installation:
pip install basicprogressbar[discord]
from basicprogressbar import DiscordProgressBar
Arguments:
# All the arguments of from BasicProgressBar first
idtoken:str="" # discord id token
disuser:str="Progress Bar" # name of discord user
throttle:float=0.5 # time between messages
# shouldnt have to edit the ones below
messtime:float=0.0 # time used for waiting between messages
messid:str="" # message id to edit line
timeout:float=10.0 # discord timeout
# all examples from BasicProgressBar apply
token = "23135245523/f43faDSAF-FEAfe24f3qfq-2yfbB-agdagADGA-g334t34gqarGS"
prog = DiscordProgressBar(1,100,idtoken=token)
for i in range(1,101):
time.sleep(0.1)
prog.current = i
prog.send()
prog = DiscordProgressBar(idtoken=token)
for i in range(1,101):
time.sleep(0.1)
prog.current = i
prog.send()
prog = DiscordProgressBar(total=100, idtoken=token)
for i in range(1,101):
time.sleep(0.1)
prog.next()
pip install basicprogressbar[async]
from basicprogressbar import class DiscordProgressBarAsync
# Async Examples
import asyncio
token = "23135245523/f43faDSAF-FEAfe24f3qfq-2yfbB-agdagADGA-g334t34gqarGS"
prog = basicprogressbar.DiscordProgressBarAsync(1,100, idtoken=token)
async def sending():
for i in range(1, 51):
prog.current = i
await prog.send()
await asyncio.sleep(1)
asyncio.run(sending())
FAQs
Basic progress bar and discord progress bar
We found that basicprogressbar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.