A simple countdown project for Python
Go to file
2020-04-25 20:09:03 +02:00
build/lib/countdown New test 2020-04-25 20:03:20 +02:00
countdown First working version 2020-04-25 20:09:03 +02:00
countdown_timer.egg-info First working version 2020-04-25 20:09:03 +02:00
dist First working version 2020-04-25 20:09:03 +02:00
LICENSE first commit 2020-04-25 19:36:15 +02:00
README.md Adding installation 2020-04-25 19:42:56 +02:00
setup.py First working version 2020-04-25 20:09:03 +02:00

A simple countdown

This is a very simple project for those who need a countdown for things like pomodoro in Python for example.

Installation

You can install this app using the following command:

pip install countdown-timer

Usage

You can use this app like this:

from countdown import countdown

# Create a countdown of 1 minute and 10 seconds
countdown(mins=1, secs=10)

# Create a countdown of 1 minute
countdown(1)

#Create a countdown of 10 seconds
countdown(mins=0, secs=10)