Metadata-Version: 2.1
Name: colourtime
Version: 0.2
Classifier: Programming Language :: Python :: 3
Requires-Dist: event_stream
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pillow
Summary: Represent time with colours
Author-email: Alexandre Marcireau <alexandre.marcireau@gmail.com>
License: MIT
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

```sh
pip install colourtime
```

Colourtime converts an Event Stream file (.es) into a PNG image, where time is represented with colour gradients.

The pip package installs a Python library (`import colourtime`) and command-line executable (`colourtime`).

The following command converts an Event Stream file.

```sh
colourtime /path/to/input.es
```

Run `colourtime --help` to list available options.

Check **python/**init**.py** for details on the Python API.

## Build from source

```sh
python3 -m venv .
source ./bin/activate
pip3 install -U pip event_stream matplotlib maturin numpy pillow
maturin develop -r
```

## Format

```
isort .; black .; pyright .
```

