Skip to content

Singleton

Singleton metaclass for ensuring single instance of classes.

This module provides a metaclass that enforces the singleton pattern, ensuring only one instance of a class is created throughout the application lifetime.

Singleton

Bases: type

Meta class to create a singleton instance of a class