Skip to main content

Calendar Data Visualisation

Terminal interface to visualise calendar data.

Features:

  • Displays in a calendar format, a color for each dates.
  • Allows to click on a date to reveal a popup with more informations about this date.
  • Color bar and file count widget integrated.
  • Multiprocessing computing of the calendar.
  • Requires you to implement a single class to adapt to your project.

Calendar implemented to show the the number of files present for each dates of the years 2024, 2025 and 2026, with a popup showing informations for the date 10/10/2025

Install

This package is available on pypi. Install with your prefered package manager.

pip install calendardataviz
# or
uv add calendardataviz

Usage

In your project, create a script that implements the InspectorABC class make it return RichString class instances then call the start_app function. You can read our demos in available in the demos folder. Here is a presentation of the different classes and functions:

RichString

A class used to define a background and foreground color along side a string.

class RichString(ttk.TTkString):
    """String class offering the possiblity to define a
    background and foreground color along a string.

    In practice, is an easy to use interface for the
    TermTk.TTkString class, and only override its init method.
    """

    def __init__(
        self,
        text: str,
        bg_color: str | tuple[int, int, int] | tuple[float, float, float] = "#000000",
        fg_color: str | tuple[int, int, int] | tuple[float, float, float] = "#ffffff",
    ) -> None:
        """
        Args:
            text: Text.
            bg_color: Background color, either as an hexadecimal value
                such as `#ff00ff` or as a tuple of values, `(255, 0, 255)`.
            fg_color: Foreground color, in the same format as bg_color.
        """

InspectorABC

Abstract base class you need to implement. It has 3 method to override:

  • color_for_date wich returns the color for a given date.
  • as_color_bar wich returns values for a color bar of a given size.
  • popup_content wich returns content for the popup displayed when the user clicks on a date.

Described in more details in the script template available bellow.

start_app

Entry point for the app, starts the Terminal User Interface.

def start_app(
    inspector_cls: type[InspectorABC],
    years: Sequence[int],
    nb_processes: int = 1,
    target_nb_files: int | None = None,
    root_dir: Path | None = None,
) -> None:
    """Library entry point, instantiates and starts the terminal interface.
    If target_nb_files and root_dir are given, also spawns a file count
    widget, wich displays informations about the file count and the
    completion percentage (nb of files in root dir / target_nb_files).

    Args:
        inspector_cls: Your project's implementatino of the
            `calendardataviz.InspectorABC`. This is the class
            used by the app to get information for each dates.
        years: A sequence of years. A calendar will be displayed
            for each year.
        nb_processes: Number of multiprocessing processes to use.
            If your inspector's `color_for_date` method is not
            instantaneous, helps speed up the calendar's initialisation.
        target_nb_files: If given with `root_dir`, will spawn a
            file count widget.
        root_dir: If given with `target_nb_files`, will spawn a
            file count widget.
    """

Script template

Here is a script template you can copy to start your own implementation of the InspectorABC class.

"""Demonstration of a rainbow calendar.
Shows how to implement an `InspectorABC`
class and run the Terminal User Interface
to interact with it.
"""

import datetime as dt
from typing import override

from calendardataviz import InspectorABC, RichString, start_app


class YourInspector(InspectorABC):
    name = "my inspector"

    @override
    def color_for_date(self, date: dt.date) -> RichString:
        """Returns the color for a given date.

        Args:
            date: date.

        Returns:
            RichString: The text and color associated
                to the given date.
        """
        pass

    @override
    def as_color_bar(self, size: int) -> list[RichString]:
        """Returns values for a color bar of the given size.

        Args:
            size: Size of the colorbar to generate.

        Returns:
            list[RichString]: A list of length "size"
                containing one character TTkStrings, one
                for each cell of the color bar.
        """
        pass

    @override
    def popup_content(self, date: dt.date) -> tuple[str, str]:
        """Return the information displayed when a date is selected.

        Args:
            date: Date selected.

        Returns:
            str: The pop-up window title.
            str: The pop-up window content.
        """
        pass


if __name__ == "__main__":
    start_app(
        inspector_cls=YourInspector,
        years=[2024, 2025, 2026],
        nb_processes=1,
    )

Default colors for color bar

You can use color bars shipped with calendardataviz. For exemple, here is the implementation of the color_for_date function of the InspectorABC class for the rainbow demo.

import datetime as dt
from typing import override

from calendardataviz import InspectorABC, RichString, start_app
from calendardataviz.colors import RAINBOW, color_from_pct


class RainbowInspector(InspectorABC):
    # ...

    @override
    def color_for_date(self, date: dt.date) -> RichString:
        """Returns the color for a given date.

        Args:
            date: date.

        Returns:
            RichString: The text and color associated
                to the given date.
        """

        # Compute the number of the day from the start of the year
        day_nb = (date - dt.date(date.year, 1, 1)).days

        # Compute the total number of days in the year
        nb_days_in_year = (dt.date(date.year + 1, 1, 1) - dt.date(date.year, 1, 1)).days

        # Compute the position of the day in the year as a percentage
        pct = day_nb / nb_days_in_year

        # Return a rich string with a background color from a color map
        return color_from_pct(pct, RAINBOW)

You can see that this implementation of the InspectorABC uses the calendardataviz.colors.RAINBOW color bar and uses the calendardataviz.colors.color_from_pct function to sample it.

Demos

Rainbow calendar demo

Default color bars demo

Contribution

Please contribute by proposing a merger request.

You can install the project in development mode like so:

git clone https://github.com/meteofrance/calendardataviz.git
cd calendardataviz
uv sync --all-extras

To format then test your code:

uvx ruff format
uvx ruff check --fix
uv run pytest -s

Once your code is formated and tested, you can create a merge request of your branch into the main branch.

Download files

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

Source Distribution

calendardataviz-0.2.2.tar.gz (25.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

calendardataviz-0.2.2-py3-none-any.whl (25.4 kB view details)

Uploaded Python 3

File details

Details for the file calendardataviz-0.2.2.tar.gz.

File metadata

  • Download URL: calendardataviz-0.2.2.tar.gz
  • Upload date:
  • Size: 25.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for calendardataviz-0.2.2.tar.gz
Algorithm Hash digest
SHA256 d505a426d0a6e2217ae4aa115682c98d98252372d7164ea8c1ca04b5c6a2b775
MD5 ad9eb38a1980770d1a5f02f33bcef728
BLAKE2b-256 92977220339f8c06ffe741182c4e23c624c3da0325b3f63ccb11f4b7476099dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for calendardataviz-0.2.2.tar.gz:

Publisher: release.yml on meteofrance/calendardataviz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file calendardataviz-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: calendardataviz-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 25.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for calendardataviz-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b4b9fa44fecff723225b8fbb7d80f7373e15f0a66c334165bfcfc4b37ae6c0ee
MD5 67ed3f005cd491a16baca209e2b131a6
BLAKE2b-256 38079fe14e7fcdcd16efc2e65dab6b03009d7b646a2c8243faac6fbc17788a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for calendardataviz-0.2.2-py3-none-any.whl:

Publisher: release.yml on meteofrance/calendardataviz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.2.4

2 files

0.2.3

2 files

This release

0.2.2 This release

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

0.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page