pylab_ml.common.singleton

Creating a singleton in Python This script contains two methods to create a singleton in Python: one using a decorator and another using a metaclass.

see https://stackoverflow.com/questions/6760685/creating-a-singleton-in-python

Functions

singleton(cls)

Create Singleton by decorator

Classes

Singleton

Create Singleton by inheriting from a metaclass