Socket
Socket
Sign inDemoInstall

tqma

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tqma

A poor man's tqdm - no progress bar, only numbers, no configuration options


Maintainers
1

Readme

A poor man's tqdm - no progress bar, only numbers, no configuration options

pip install tqma

Tested against Windows 10 / Python 3.10 / Anaconda
  • No progress bar, only numbers (printed to stderr)
  • No configuration options
  • Only 10 lines of code
  • Only one import: sys
  • No dependencies
from tqma import tqma
from time import sleep
f=0

for r in tqma(range(10)):
    f = f + r
    sleep(2)
print(f)

Keywords

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