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

ttd

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ttd

Time Till Done (ttd) is a simple progress bar for your long running Python scripts

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

Time Till Done (ttd)

.. image:: https://travis-ci.org/JarrodCTaylor/ttd.svg?branch=master :target: https://travis-ci.org/JarrodCTaylor/ttd

Time Till Done ttd for short is a simple progress bar to help give you some feedback for your long running Python scripts.

Installation

pip install ttd

Demo Gif

.. image:: https://cloud.githubusercontent.com/assets/4416952/3593813/177b9caa-0c8e-11e4-9e6d-87340fe43bd1.gif

Usage

The easiest way to use the module is in a for loop as demonstrated in the demo gif above and the code snippet below.

.. code:: python

import time
from ttd import ttd

for i in ttd(range(99)):
    time.sleep(.05)

You may also update the progress bar manually by calling print_ttd(index, total) throughout your script as demonstrated below.

.. code:: python

import time
from ttd import print_ttd

print_ttd(0, 5)
time.sleep(.5)

print_ttd(1, 5)
time.sleep(.04)

print_ttd(2, 5)
time.sleep(.5)

print_ttd(3, 5)
time.sleep(.5)

print_ttd(4, 5)
time.sleep(.5)

print_ttd(5, 5)
print("\ndone")

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