There seem to be many ways to define Singletons in python. I was wondering if there is a consensus opinion on StackOverflow.
|
closed as not constructive by ThinkingStiff, Tom, ecatmur, Yan Sklyarenko, Jon Clements Mar 12 at 12:03
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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. |
|||||||||||||||||
|
|
A slightly different approach to implement the singleton in python is the borg pattern by Alex Martelli (google employee and python genius).
So instead of forcing all instances to have the same identity they share state. |
|||||||||||||||||||||
|
|
The module approach works well. If I absolutely need a singleton I prefer the Metaclass approach.
|
|||||||||||||
|
|
override
|
|||||||||||||
|
|
@Serge: I like this quote from Norvig.
@Staale, @John: I currently use the module approach, but was wondering whether I was missing a more widely accepted approach. |
|||
|
|
|
The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.
|
|||||||||||
|
|
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:
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). |
|||||||
|
|
Creating a singleton decorator (aka an annotation) is an elegant way if you want to decorate (annotate) classes going forward. Then you just put @singleton before your class definition.
|
|||||||||||||||||||
|
|
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) |
|||||
|
|
As the accepted answer says, the most idiomatic way is to just use a module. With that in mind, here's a proof of concept:
See the Python data model for more details on Example:
Notes:
|
|||||||||
|
|
There are also some interesting articles on the Google Testing blog, discussing why singleton are/may be bad and are an anti-pattern: |
||||
|
|
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.
or if there is no issue with instantiating when the module is first imported:
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. |
|||
|
|
The python documentation does cover this
I would probably rewrite it look more like this:
Should be relatively clean to extend this:
|
|||
|
|
|
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:
That seems to do the trick. |
|||
|
|
|
Some people call singletons evil. I've certainly been bitten by unit-testing problems with them. |
|||
|
|
|
||||
|
|
|
My simple solution which is based on the default value of function parameters.
|
|||
|
|
|
Ok, singleton could be good or evil, I know. This is my implementation, I simply extend a classic approach to introduce a cache inside and produce many instances of a different type or, many instances of same type but with different arguments. I Called it Singleton_group, because It Groups similar instances together and prevent that an object of the same class, with same arguments, could be created:
every object carries the singleton cache...this could be evil ...But it works great for some :) |
|||
|
|
|
|||
|
|
|
Singleton's half brother complete agree with staale and i leave here a sample of creating a singleton half brother
a will report now as being of same class as singleton even if it does not look like it. so singletons using complicated classes end up depending on we don't mess much with them. being so we can have the same effect and use simpler things like a variable or a module. still if we want use classes for clarity and because in python a class is an object, so we already have the object (not and instance but will do just like).
there we have a nice assertion error if we try to create an instance, we can store on derivations static members and make changes to them at runtime (i luv python). This object is as good as other about half brothers (you still can create them if you wish), however it will tend to run faster due to simplicity |
|||
|
|
|
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:
|
|||
|
|
