7 min read

Object-Oriented Design Patterns in Python - The Singleton Pattern

Sometimes, there can be only one. Learn how to restrict instantiation to a single object, and explore the "Borg" idiom and Pythonic module-level singletons for global state management.
Object-Oriented Design Patterns in Python - The Singleton Pattern
Reader: Python Singleton Pattern

Reader Mode

-- / --

Introduction