up vote 51 down vote favorite
27
share [g+] share [fb]

There seem to be many ways to define Singletons in python. I was wondering if there is a consensus opinion on StackOverflow.

link|improve this question
feedback

15 Answers

up vote 72 down vote accepted

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.

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.

link|improve this answer
2  
Couldn't the constructor just check if an instance has already been created and throw an exception if it has been? – Casebash May 16 '10 at 7:56
2  
This is fine so long as you don't need to use inheritance as part of your design, in which case most of the answers below are more suitable – jamesj Jun 6 '11 at 8:23
For accessing "module properties" the right way, see: stackoverflow.com/questions/6841853/… – Frosty Z Jul 27 '11 at 10:22
Does that means singleton classes are not possible in python at all ? – Yugal Jindle Nov 22 '11 at 5:21
feedback

A slightly different approach to implement the singleton in python is the borg pattern by Alex Martelli (google employee and python genius).

class Borg:
    __shared_state = {}
    def __init__(self):
        self.__dict__ = self.__shared_state

So instead of forcing all instances to have the same identity they share state.

link|improve this answer
13  
Also known as monostate. Possibly more evil than singleton. – Tom Hawtin - tackline Nov 1 '09 at 11:52
-1, what's the point? – hasen j Nov 27 '09 at 19:58
It isn't Singleton at all. – Roman Dolgiy May 20 '10 at 15:30
1  
Doesn't work with new style classes – James Emerton Jun 4 '10 at 23:54
4  
Is anyone able to explain why this doesn't work with new-style classes? – Stephen Emslie Jun 9 '11 at 9:08
feedback

override new method

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"
link|improve this answer
I first voted up, but realized that this is against the Single Responsibility Principle (c2.com/cgi/wiki?SingleResponsibilityPrinciple). See point (2) in blogs.msdn.com/scottdensmore/archive/2004/05/25/140827.aspx. – haridsv May 20 '10 at 19:24
3  
+1 because, although singletons are wrong, I think this is the best way to make one. (I'm not counting modules as singletons. Modules are better than singletons because they aren't singletons.) – senderle Feb 12 '11 at 23:47
Also the problem with this is that init gets called multiple times – ithkuil Oct 28 '11 at 9:49
feedback

The module approach works well. If I absolutely need a singleton I prefer the Metaclass approach.

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
link|improve this answer
This pattern is against the "Single Responsibility Principle" (c2.com/cgi/wiki?SingleResponsibilityPrinciple). See point (2) in blogs.msdn.com/scottdensmore/archive/2004/05/25/140827.aspx. – haridsv May 20 '10 at 19:21
@haridsv I don't agree. The fact that the class is a singleton is abstracted away in the metaclass implementation -- the class itself doesn't know or care that it's a singleton as it's not in charge of enforcing that requirement, the metaclass is. The method below is clearly a violation, however, as you note. The base class method is somewhere in between. – agf Jul 23 '11 at 4:38
feedback

@Serge: I like this quote from Norvig.

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.

@Staale, @John: I currently use the module approach, but was wondering whether I was missing a more widely accepted approach.

link|improve this answer
feedback

The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.

class foo:
  x = 1

  @classmethod
  def increment(cls, y = 1):
    cls.x += y
link|improve this answer
There should be a "def" and a ":" in there! @classmethod def increment(cls, y = 1): cls.x += y – Adam Apr 21 '09 at 18:15
Quite correct. I've corrected it. – David Locke Apr 21 '09 at 18:44
I like this approach, but there is a minor gotcha. At least with Python 2.6, you can't make methods like __len__ or __getitem__ work as classmethods, so you don't have as much flexibility to customize as you would with an object. Since I often want to use a Singleton as a collection of data, that's a bit disappointing. – Dan Homerick Jul 29 '10 at 23:19
feedback

Here is an example from Peter Norvig's Python IAQ How do I do the Singleton Pattern in Python? (You should use search feature of your browser to find this question, there is no direct link, sorry)

Also Bruce Eckel has another example in his book Thinking in Python (again there is no direct link to the code)

link|improve this answer
+1 for mentioning the browser's search feature. – David Kemp Nov 1 '11 at 9:23
feedback

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.

If you really want a singleton class, there's a reasonable implementation described on the first hit on google for "python singleton", specifically:

class Singleton:
    __single = None
    def __init__( self ):
        if Singleton.__single:
            raise Singleton.__single
        Singleton.__single = self

That seems to do the trick.

link|improve this answer
feedback

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:

_data_controller = None
def GetDataController():
    global _data_controller
    if _data_controller is None:
        _data_controller = DataController()
    return _data_controller

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).

link|improve this answer
Agreed. And I should have read all the answers before posting mine... – Mark Evans Jul 27 '11 at 12:03
feedback

There are also some interesting articles on the Google Testing blog, discussing why singleton are/may be bad and are an anti-pattern:

link|improve this answer
I put your links on separate lines so that they're not all merged into one – David Kemp Nov 1 '11 at 9:24
feedback

Some people call singletons evil. I've certainly been bitten by unit-testing problems with them.

link|improve this answer
feedback
class Singleton(object[,...]):

    staticVar1 = None
    staticVar2 = None

    def __init__(self):
        if self.__class__.staticVar1==None :
            # create class instance variable for instantiation of class
            # assign class instance variable values to class static variables
        else:
            # assign class static variable values to class instance variables
link|improve this answer
feedback

I think that forcing a class or an instance to be a Singleton is overkill. Personally, I like to define a normal instantiatable class, a semi-private reference, and a simple factory function.

class NothingSpecial:
    pass

_the_one_and_only = None

def TheOneAndOnly():
    global _the_one_and_only
    if not _the_one_and_only:
        _the_one_and_only = NothingSpecial()
    return _the_one_and_only

or if there is no issue with instantiating when the module is first imported:

class NothingSpecial:
    pass

THE_ONE_AND_ONLY = NothingSpecial()

That way you can write tests against fresh instances without side effects, no need for sprinkling the module with global statement and if needed you can derive variants in the future.

link|improve this answer
feedback

In cases where you don't won't the metaclass based solution above, and you don't like the simple function decorator based approach (e.g. because in that case static methods on the singleton class won't work), this compromise works:

class singleton(object):
  """Singleton decorator."""

  def __init__(self, cls):
      self.__dict__['cls'] = cls

  instances = {}

  def __call__(self):
      if self.cls not in self.instances:
          self.instances[self.cls] = self.cls()
      return self.instances[self.cls]

  def __getattr__(self, attr):
      return getattr(self.__dict__['cls'], attr)

  def __setattr__(self, attr, value):
      return setattr(self.__dict__['cls'], attr, value)
link|improve this answer
feedback

My simple solution which is based on the default value of function parameters.

def getSystemContext(contextObjList=[]):
    if len( contextObjList ) == 0:
        contextObjList.append( Context() )
        pass
    return contextObjList[0]

class Context(object):
    # Anything you want here
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.