Metadata-Version: 2.4
Name: tados-stopwatch
Version: 0.0.2
Summary: Easily measure time
Author-email: NumbersTada <tadaktatak61@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown

This is a simple stopwatch class. Example:

```py
from tados_stopwatch import Stopwatch
import time

s = Stopwatch()

s.start()
time.sleep(3)
print(s.get())

time.sleep(2)
s.stop()
print(s.get())

s.reset()

s.set(14)

s.bind(3, lambda: print("3 seconds have passed"))

while s.get() < 5:
    print("Updated")
    time.sleep(1)
```
