Skip to content

Instantly share code, notes, and snippets.

@chbndrhnns
chbndrhnns / singleton.py
Created November 25, 2017 22:07 — forked from lucgiffon/singleton.py
Singleton Mixin Class of Python
#!/usr/bin/env python
# vim: set fileencoding=utf8 :
"""Singleton Mixin"""
class Singleton(object):
"""Singleton Mixin Class
Inherit this class and make the subclass Singleton.
Usage: