Is there a simple, elegant way to define Singletons in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T16:52:01Zhttp://stackoverflow.com/feeds/question/31875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python9Is there a simple, elegant way to define Singletons in Python?Jamie2008-08-28T09:03:09Z2009-11-28T20:03:13Z
<p>There seem to be many ways to define Singletons in python. I was wondering if there is a consensus opinion on StackOverflow.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/31884#318842Answer by John for Is there a simple, elegant way to define Singletons in Python?John2008-08-28T09:09:22Z2008-08-28T09:09:22Z<p>Being relatively new to python I'm not sure what the most common idiom is, but the simplest thing I can think of is just using a module instead of a class. What would have been instance methods on your class become just functions in the module and any data just becomes variables in the module instead of members of the class. I suspect this is the pythonic approach to solving the type of problem that people use singletons for.</p>
<p>If you really want a singleton class, there's a reasonable implementation described on the <a href="http://www.python.org/workshops/1997-10/proceedings/savikko.html" rel="nofollow">first hit on google</a> for "python singleton", specifically:</p>
<pre><code>class Singleton:
__single = None
def __init__( self ):
if Singleton.__single:
raise Singleton.__single
Singleton.__single = self
</code></pre>
<p>That seems to do the trick.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/31887#3188725Answer by Staale for Is there a simple, elegant way to define Singletons in Python?Staale2008-08-28T09:10:12Z2009-08-22T01:10:48Z<p>I don't really see the need, as a module with functions (and not a class) would serve well as a singleton. All its variables would be bound to the module, which could not be instantiated repeatedly anyways. </p>
<p>If you do wish to use a class, there is no way of creating private classes or private constructors in python, so you can't protect against multiple instantiations, other than just via convention in use of your API. I would still just put methods in a module, and consider the module as the singleton.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/31892#318922Answer by Serge for Is there a simple, elegant way to define Singletons in Python?Serge2008-08-28T09:13:13Z2008-08-28T09:28:49Z<p>Here is an example from Peter Norvig's Python IAQ <a href="http://norvig.com/python-iaq.html" rel="nofollow">How do I do the Singleton Pattern in Python?</a> (You should use search feature of your browser to find this question, there is no direct link, sorry)</p>
<p>Also Bruce Eckel has another example in his book <a href="http://www.mindview.net/Books/TIPython" rel="nofollow">Thinking in Python</a> (again there is no direct link to the code)</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/31907#319073Answer by Jamie for Is there a simple, elegant way to define Singletons in Python?Jamie2008-08-28T09:31:10Z2008-08-28T09:31:10Z<p>@Serge: I like this quote from <a href="http://norvig.com/python-iaq.html" rel="nofollow">Norvig</a>.</p>
<blockquote>
<p>Before the Gang of Four got all
academic on us, ``singleton'' (without
the formal name) was just a simple
idea that deserved a simple line of
code, not a whole religion.</p>
</blockquote>
<p>@Staale, @John: I currently use the module approach, but was wondering whether I was missing a more widely accepted approach.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/32487#3248714Answer by Peter Hoffmann for Is there a simple, elegant way to define Singletons in Python?Peter Hoffmann2008-08-28T14:53:54Z2008-08-28T14:53:54Z<p>A slightly different approach to implement the singleton in python is the <a href="http://code.activestate.com/recipes/66531/" rel="nofollow">borg pattern</a> by Alex Martelli (google employee and python genius).</p>
<pre><code>class Borg:
__shared_state = {}
def __init__(self):
self.__dict__ = self.__shared_state
</code></pre>
<p>So instead of forcing all instances to have the same identity they share state.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/33201#332019Answer by Acuminate for Is there a simple, elegant way to define Singletons in Python?Acuminate2008-08-28T19:39:25Z2008-08-28T19:39:25Z<p>The module approach works well. If I absolutely need a singleton I prefer the Metaclass approach.</p>
<pre><code>class Singleton(type):
def __init__(cls, name, bases, dict):
super(Singleton, cls).__init__(name, bases, dict)
cls.instance = None
def __call__(cls,*args,**kw):
if cls.instance is None:
cls.instance = super(Singleton, cls).__call__(*args, **kw)
return cls.instance
class MyClass(object):
__metaclass__ = Singleton
</code></pre>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/35080#350802Answer by David Locke for Is there a simple, elegant way to define Singletons in Python?David Locke2008-08-29T19:15:02Z2009-04-21T18:44:06Z<p>The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.</p>
<pre><code>class foo:
x = 1
@classmethod
def increment(cls, y = 1):
cls.x += y
</code></pre>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/61944#619441Answer by George V. Reilly for Is there a simple, elegant way to define Singletons in Python?George V. Reilly2008-09-15T06:49:13Z2008-09-15T06:49:13Z<p>Some people call singletons <a href="http://blogs.msdn.com/scottdensmore/archive/2004/05/25/140827.aspx" rel="nofollow">evil</a>. I've certainly been bitten by unit-testing problems with them.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/61984#619842Answer by FrankS for Is there a simple, elegant way to define Singletons in Python?FrankS2008-09-15T07:47:20Z2008-09-15T07:47:20Z<p>There are also some interesting articles on the Google Testing blog, discussing why singleton are/may be bad and are an anti-pattern:</p>
<p><a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-join-new-project.html" rel="nofollow">Singletons are Pathological Liars</a>
<a href="http://googletesting.blogspot.com/2008/08/where-have-all-singletons-gone.html" rel="nofollow">Where Have All the Singletons Gone?</a>
<a href="http://googletesting.blogspot.com/2008/08/root-cause-of-singletons.html" rel="nofollow">Root Cause of Singletons</a></p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/1314783#13147830Answer by kaizer.se for Is there a simple, elegant way to define Singletons in Python?kaizer.se2009-08-22T00:44:23Z2009-08-22T00:44:23Z<p>I'm very unsure about this, but my project uses 'convention singletons' (not enforced singletons9, that is, if I have a class called DataController, I define this in the same module:</p>
<pre><code>_data_controller = None
def GetDataController():
global _data_controller
if _data_controller is None:
_data_controller = DataController()
return _data_controller
</code></pre>
<p>It is not elegant, since it's a full six lines. But all my singletons use this pattern, and it's at least very explicit (which is pythonic).</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/1810391#18103911Answer by ilang7 for Is there a simple, elegant way to define Singletons in Python?ilang72009-11-27T19:42:05Z2009-11-27T19:42:05Z<p>override <strong>new</strong> method</p>
<pre><code>class Singleton(object):
_instance = None
def __new__(cls, *args, **kwargs):
if not cls._instance:
cls._instance = super(Singleton, cls).__new__(
cls, *args, **kwargs)
return cls._instance
if __name__ == '__main__':
s1=Singleton()
s2=Singleton()
if(id(s1)==id(s2)):
print "Same"
else:
print "Different"
</code></pre>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/1813300#18133000Answer by inhahe for Is there a simple, elegant way to define Singletons in Python?inhahe2009-11-28T18:30:23Z2009-11-28T20:03:13Z<p>i'm trying to do this, but for some reason it's not working:</p>
<pre><code>class Singleton(type):
def __new__(meta, classname, bases, classDict):
@staticmethod
def nonewinst(*args, **kwargs):
raise ValueError("Can't make duplicate instance of singleton " + classname)
@staticmethod
def newoldnew(obj):
return obj
oldnew = classDict.get("__new__", newoldnew)
@staticmethod
def newnew(obj, *args, **kwargs):
o = oldnew(obj, *args, **kwargs)
obj.__new__ = nonewinst
return o
classDict["__new__"] = newnew
return type.__new__(meta, classname, bases, classDict)
#used like this:
class SomeSingleton:
__metaclass__ = Singleton
>>> b= A()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "c:\python25\funcs.py", line 66, in newnew
o = oldnew(obj, *args, **kwargs)
TypeError: 'staticmethod' object is not callable
</code></pre>