🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

dgc-modern

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dgc-modern

DGC-Modern is Best Progress Bar Library!

1.5
PyPI
Maintainers
1

DGC-Modern is Best Progres Bar Library!

Installation

pip install dgc_modern

Usage

from dgc_modern import Task

Progress Bar

import time

t1 = Task(100, "Download A", process_color="green")
t2 = Task(50, "Processing B", process_color="yellow", iswaiting=True)

for i in range(100):
    t1.update()
    t2.update()
    time.sleep(0.05)

t2.waitmode(False)
for i in range(50):
    t2.update()
    time.sleep(0.1)

t1.finish()
t2.finish()

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