Skip to main content

A count-timer with optional expiry that can be paused, resumed, and reset.

Project description

count-timer

A class implementing a counting-up/counting-down timer

Installation

$ pip install count-timer

Demo

This is a rudimentary text-based demonstration of the count-down version of the CountTimer class. You can launch it directly:

$ demo

...or from Python:

$ python count_timer/demo_async.py

Once launched, the demo will prompt you to enter a duration (the count-down timer expiration value). The timer will begin counting down on the terminal. The time will transition to yellow when there is <10 sec before expiration, and red when there are <5 sec.

Pressing "q" will cause the timer to quit.

Pressing "r" will cause the timer to restart at the original duration.

The timer may be paused/resumed by pressing the space bar.

API

CountTimer(duration: float)

Creates a counting timer, with configurable duration (seconds). The timer starts at time t=0, and counts up using the system clock until it hits t=duration. At that time, the expired property is set to True. Note that the counter continues incrementing beyond the expiration time.

If duration is set to zero (which is the default), the timer never expires and continues to count forever.

The timer can be paused using the pause() method. When paused, the timer stops incrementing. When the clock is resumed again (using the resume() method), it continues from where it left off.

This counter/timer can be used as a "count-up" timer or a "count-down" timer. The default mode of interpretation is "up," but if you prefer a countdown time, simply look at the remaining property instead of elapsed.

┌─────────────────────────────────────────────────────────────────────────────────────┐
│                      count_timer.count_timer.CountTimer                             │
└─────────────────────────────────────────────────────────────────────────────────────┘
class CountTimer(duration=0):
    A counting timer (w/ optional expiry that can be started, paused, resumed and reset

    Configuration:
        duration: Number of seconds to elapse before expiration
                  (optional; default: 0 - indicates time never expires)

    Methods:
        start(): start the timer
        pause(): pause the timer
        resume(): resume the timer
        reset(): reset the timer to default (duration 0/paused/not started)

    Properties:
        paused: True if timer is paused
        running: True if timer is running
        duration: value of the 'duration' config param
        elapsed: time (sec) since timer was started
        remaining: time (sec) until timer expires

    Inspiration from https://stackoverflow.com/a/60027719/4402572

   def start(self):
       Start the timer.
   def pause(self):
       Pause the timer.
   def resume(self):
       Resume the timer.
   def reset(self, duration=0):

elapsed: float Time (seconds) since the timer was started

paused: bool Whether or not the timer's countup has been paused

running: bool Whether or not the timer is currently running (i.e. incrementing internally)

expired: bool Whether or not the timer's configured expiration value has been exceeded

start(): start() -> None Starts the timer, counting up indefinitely

pause(): pause() -> None Pauses the timer; the countup is stopped until resumed

resume(): resume() -> None Resumes / unpauses the timer - when the timer is resumed, the countdown starts from where it was when paused

reset(): reset() -> None Puts the timer back in its original state when first created (paused / not yet started)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

count-timer-0.3.8.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

count_timer-0.3.8-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file count-timer-0.3.8.tar.gz.

File metadata

  • Download URL: count-timer-0.3.8.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.9

File hashes

Hashes for count-timer-0.3.8.tar.gz
Algorithm Hash digest
SHA256 03ab3ba3738eac50fb7000cad14b7ec7663f92c708b3ed5ff881f5ae3af5278b
MD5 e0dd73bc2c17b42dc89f477f4f9c1c30
BLAKE2b-256 7e14d70ae7d676ff96e98970932a8db43e94c49505c1a9afbd445c4ca5ca4d8f

See more details on using hashes here.

File details

Details for the file count_timer-0.3.8-py3-none-any.whl.

File metadata

  • Download URL: count_timer-0.3.8-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.9

File hashes

Hashes for count_timer-0.3.8-py3-none-any.whl
Algorithm Hash digest
SHA256 9818a0f41f1adb5db99bbfa6ab346a1f73acdea9f0e95474081ec0032afd28a0
MD5 8445fa5aa58d77b3c1cf81a5c77365a1
BLAKE2b-256 947f6d28dee72cef3c98cc4034f22c4828a5637d0b467aaf249d244e9384eaf2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page