Using Python types for fun and profit: A thread safe Singleton

Introduction The singleton pattern restricts the instantiation of a class to a single instance. The singleton pattern makes it possible to ensure that: One of the main uses of the singleton pattern is logging, as all clients who wish to…

