rupert / singleton

Python singleton

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python Singleton

A singleton metaclass for Python. Created for fun, do not use!

from singleton import singleton


@singleton
class C(object):
    pass


a = C()
b = C()

assert a is b

About

Python singleton


Languages

Language:Python 100.0%