Metadata-Version: 2.4
Name: ticktools
Version: 0.1.1
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ChronoKit

A simple Python stopwatch/timer utility.

### Installation

```bash
pip install chronokit
```

### Usage

```python
from chronokit import stopwatch, wait, from_start

stopwatch("start")
wait(1500)
print(stopwatch("stop"))
```

Works with any capitalization:

```python
stopwatch("StArT")
stopwatch("sToP")
```
