What's the best way to implement an 'enum' in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:03:20Zhttp://stackoverflow.com/feeds/question/36932http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python43What's the best way to implement an 'enum' in Python?sectrean2008-08-31T15:55:47Z2009-11-18T02:51:40Z
<p>I'm mainly a C# developer, but I'm currently working on a project in Python.</p>
<p>What's the best way to implement the equivalent of an enum in Python? </p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/36937#3693729Answer by Alexandru Nedelcu for What's the best way to implement an 'enum' in Python?Alexandru Nedelcu2008-08-31T16:06:14Z2008-08-31T16:06:14Z<p>Python doesn't have an equivalent but you can implement your own.</p>
<p>Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ...</p>
<pre><code>class Animal:
DOG=1
CAT=2
x = Animal.DOG
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/36938#369387Answer by Chris Upchurch for What's the best way to implement an 'enum' in Python?Chris Upchurch2008-08-31T16:08:11Z2008-08-31T16:08:11Z<p>What exactly do you want to use an enum for? Is there a more Pythonic way of doing it?</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/36940#369402Answer by davidg for What's the best way to implement an 'enum' in Python?davidg2008-08-31T16:09:53Z2008-08-31T16:09:53Z<p>Hi!</p>
<p>Hmmm... I suppose the closest thing to an enum would be a dictionary, defined either like this:</p>
<pre><code>months = {
'January': 1,
'February': 2,
...
}
</code></pre>
<p>or</p>
<pre><code>months = dict(
January=1,
February=2,
...
)
</code></pre>
<p>Then, you can use the symbolic name for the constants like this:</p>
<pre><code>mymonth = months['January']
</code></pre>
<p>There are other options, like a list of tuples, or a tuple of tuples, but the dictionary is the only one that provides you with a "symbolic" (constant string) way to access the
value.</p>
<p>Edit: I like Alexandru's answer too!</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/37000#3700015Answer by dF for What's the best way to implement an 'enum' in Python?dF2008-08-31T18:10:50Z2008-09-01T13:26:06Z<p>Python doesn't have a built-in equivalent to <code>enum</code>, and other answers have ideas for implementing your own (you may also be interested in the <a href="http://code.activestate.com/recipes/67107/" rel="nofollow">over the top version</a> in the Python cookbook).</p>
<p>However, in situations where an <code>enum</code> would be called for in C, I usually end up <strong><em>just using simple strings</em></strong>: because of the way objects/attributes are implemented, (C)Python is optimized to work very fast with short strings anyway, so there wouldn't really be any performance benefit to using integers. To guard against typos / invalid values you can insert checks in selected places.</p>
<pre><code>ANIMALS = ['cat', 'dog', 'python']
def take_for_a_walk(animal):
assert animal in ANIMALS
...
</code></pre>
<p>(One disadvantage compared to using a class is that you lose the benefit of autocomplete)</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/37081#3708116Answer by Mark Harrison for What's the best way to implement an 'enum' in Python?Mark Harrison2008-08-31T20:31:22Z2008-08-31T20:31:22Z<p>If you need the numeric values, here's the quickest way:</p>
<pre><code>(dog,cat,rabbit) = range(0,3)
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/38092#3809230Answer by Aaron Maenpaa for What's the best way to implement an 'enum' in Python?Aaron Maenpaa2008-09-01T16:05:25Z2009-02-03T00:49:15Z<p>The typesafe enum pattern which was used in Java pre-JDK 5 has a
number of advantages. Much like in Alexandru's answer, you create a
class and class level fields are the enum values; however, the enum
values are instances of the class rather than small integers. This has
the advantage that your enum values don't inadvertently compare equal
to small integers, you can control how they're printed, add arbitrary
methods if that's useful and make assertions using isinstance:</p>
<pre><code>class Animal:
def __init__(self, name):
self.name = name
def __str__(self):
return self.name
def __repr__(self):
return "<Animal: %s>" % self
Animal.DOG = Animal("dog")
Animal.CAT = Animal("cat")
>>> x = Animal.DOG
>>> x
<Animal: dog>
>>> x == 1
False
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/38762#387621Answer by tuxedo for What's the best way to implement an 'enum' in Python?tuxedo2008-09-02T03:20:30Z2008-09-02T03:20:30Z<p>davidg recommends using dicts. I'd go one step further and use sets:</p>
<pre><code>months = set('January', 'February', ..., 'December')
</code></pre>
<p>Now you can test whether a value matches one of the values in the set like this:</p>
<pre><code>if m in months:
</code></pre>
<p>like dF, though, I usually just use string constants in place of enums.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/99347#993471Answer by Rick Harris for What's the best way to implement an 'enum' in Python?Rick Harris2008-09-19T03:37:43Z2008-09-19T03:37:43Z<p>Alexandru's suggestion of using class constants for enums works quite well. </p>
<p>I also like to add a dictionary for each set of constants to lookup a human-readable string representation. </p>
<p>This serves two purposes: a) it provides a simple way to pretty-print your enum and b) the dictionary logically groups the constants so that you can test for membership.</p>
<pre><code>class Animal:
TYPE_DOG = 1
TYPE_CAT = 2
type2str = {
TYPE_DOG: "dog",
TYPE_CAT: "cat"
}
def __init__(self, type_):
assert type_ in self.type2str.keys()
self._type = type_
def __repr__(self):
return "<%s type=%s>" % (
self.__class__.__name__, self.type2str[self._type].upper())
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/101546#1015462Answer by nikow for What's the best way to implement an 'enum' in Python?nikow2008-09-19T12:45:27Z2009-02-08T23:39:49Z<p>You can take a look at the <a href="http://code.enthought.com/projects/traits/" rel="nofollow">traits</a> package. This gives you something like type safety and many other useful features.</p>
<p>But it really depends on what you want to use such an enum for.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/107973#10797311Answer by iwo.gewo for What's the best way to implement an 'enum' in Python?iwo.gewo2008-09-20T11:49:38Z2008-09-20T11:49:38Z<pre><code>def M_add_class_attribs(attribs):
def foo(name, bases, dict_):
for v, k in attribs:
dict_[k] = v
return type(name, bases, dict_)
return foo
def enum(names):
class Foo(object):
__metaclass__ = M_add_class_attribs(enumerate(names))
def __setattr__(self, name, value): # this makes it read-only
raise NotImplementedError
return Foo()
</code></pre>
<p>Use it like this: </p>
<pre><code>Animal = enum(('DOG', 'CAT'))
Animal.DOG # returns 0
Animal.CAT # returns 1
Animal.DOG = 2 # raises NotImplementedError
</code></pre>
<p>if you just want unique symbols and don't care about the values, replace this line: </p>
<pre><code>__metaclass__ = M_add_class_attribs(enumerate(names))
</code></pre>
<p>with this:</p>
<pre><code>__metaclass__ = M_add_class_attribs((object(), name) for name in names)
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/220537#2205370Answer by Cipher for What's the best way to implement an 'enum' in Python?Cipher2008-10-21T02:08:29Z2008-10-21T02:24:21Z<p>Its funny, I just had a need for this the other day and i couldnt find an implementation worth using... so i wrote my own</p>
<pre><code>import functools
class EnumValue(object):
def __init__(self,name,value,type):
self.__value=value
self.__name=name
self.Type=type
def __str__(self):
return self.__name
def __repr__(self):#2.6 only... so change to what ever you need...
return '{cls}({0!r},{1!r},{2})'.format(self.__name,self.__value,self.Type.__name__,cls=type(self).__name__)
def __hash__(self):
return hash(self.__value)
def __nonzero__(self):
return bool(self.__value)
def __cmp__(self,other):
if isinstance(other,EnumValue):
return cmp(self.__value,other.__value)
else:
return cmp(self.__value,other)#hopefully their the same type... but who cares?
def __or__(self,other):
if other is None:
return self
elif type(self) is not type(other):
raise TypeError()
return EnumValue('{0.Name} | {1.Name}'.format(self,other),self.Value|other.Value,self.Type)
def __and__(self,other):
if other is None:
return self
elif type(self) is not type(other):
raise TypeError()
return EnumValue('{0.Name} & {1.Name}'.format(self,other),self.Value&other.Value,self.Type)
def __contains__(self,other):
if self.Value==other.Value:
return True
return bool(self&other)
def __invert__(self):
enumerables=self.Type.__enumerables__
return functools.reduce(EnumValue.__or__,(enum for enum in enumerables.itervalues() if enum not in self))
@property
def Name(self):
return self.__name
@property
def Value(self):
return self.__value
class EnumMeta(type):
@staticmethod
def __addToReverseLookup(rev,value,newKeys,nextIter,force=True):
if value in rev:
forced,items=rev.get(value,(force,()) )
if forced and force: #value was forced, so just append
rev[value]=(True,items+newKeys)
elif not forced:#move it to a new spot
next=nextIter.next()
EnumMeta.__addToReverseLookup(rev,next,items,nextIter,False)
rev[value]=(force,newKeys)
else: #not forcing this value
next = nextIter.next()
EnumMeta.__addToReverseLookup(rev,next,newKeys,nextIter,False)
rev[value]=(force,newKeys)
else:#set it and forget it
rev[value]=(force,newKeys)
return value
def __init__(cls,name,bases,atts):
classVars=vars(cls)
enums = classVars.get('__enumerables__',None)
nextIter = getattr(cls,'__nextitr__',itertools.count)()
reverseLookup={}
values={}
if enums is not None:
#build reverse lookup
for item in enums:
if isinstance(item,(tuple,list)):
items=list(item)
value=items.pop()
EnumMeta.__addToReverseLookup(reverseLookup,value,tuple(map(str,items)),nextIter)
else:
value=nextIter.next()
value=EnumMeta.__addToReverseLookup(reverseLookup,value,(str(item),),nextIter,False)#add it to the reverse lookup, but don't force it to that value
#build values and clean up reverse lookup
for value,fkeys in reverseLookup.iteritems():
f,keys=fkeys
for key in keys:
enum=EnumValue(key,value,cls)
setattr(cls,key,enum)
values[key]=enum
reverseLookup[value]=tuple(val for val in values.itervalues() if val.Value == value)
setattr(cls,'__reverseLookup__',reverseLookup)
setattr(cls,'__enumerables__',values)
setattr(cls,'_Max',max([key for key in reverseLookup] or [0]))
return super(EnumMeta,cls).__init__(name,bases,atts)
def __iter__(cls):
for enum in cls.__enumerables__.itervalues():
yield enum
def GetEnumByName(cls,name):
return cls.__enumerables__.get(name,None)
def GetEnumByValue(cls,value):
return cls.__reverseLookup__.get(value,(None,))[0]
class Enum(object):
__metaclass__=EnumMeta
__enumerables__=None
class FlagEnum(Enum):
@staticmethod
def __nextitr__():
yield 0
for val in itertools.count():
yield 2**val
def enum(name,*args):
return EnumMeta(name,(Enum,),dict(__enumerables__=args))
</code></pre>
<p>take it or leave it, it did what i needed it to do :)</p>
<p>use it like:</p>
<pre><code>
class Air(FlagEnum):
__enumerables__=('None','Oxygen','Nitrogen','Hydrogen')
class Mammals(Enum):
__enumerables__=('Bat','Whale',('Dog','Puppy',1),'Cat')
Bool = enum('Bool','Yes',('No',0))
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/505457#5054575Answer by Luciano Ramalho for What's the best way to implement an 'enum' in Python?Luciano Ramalho2009-02-02T23:39:53Z2009-11-17T19:46:02Z<p>What I use:</p>
<pre><code>class Enum(object):
def __init__(self, names, separator=None):
self.names = names.split(separator)
for value, name in enumerate(self.names):
setattr(self, name.upper(), value)
def tuples(self):
return tuple(enumerate(self.names))
</code></pre>
<p>How to use:</p>
<pre><code>>>> state = Enum('draft published retracted')
>>> state.DRAFT
0
>>> state.RETRACTED
2
>>> state.FOO
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Enum' object has no attribute 'FOO'
>>> state.tuples()
((0, 'draft'), (1, 'published'), (2, 'retracted'))
</code></pre>
<p>So this gives you integer constants like state.PUBLISHED and the two-tuples to use as choices in Django models.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/1529241#15292412Answer by Ashwin for What's the best way to implement an 'enum' in Python?Ashwin2009-10-07T02:47:33Z2009-10-07T03:00:38Z<p>The best solution for you would depend on what you require from your <em>fake</em> <strong><code>enum</code></strong>.</p>
<p><strong>Simple enum:</strong></p>
<p>If you need the <strong><code>enum</code></strong> as only a list of <em>names</em> identifying different <em>items</em>, the solution by <strong>Mark Harrison</strong> (above) is great:</p>
<pre><code>(Pen, Pencil, Eraser) = range(0, 3)
</code></pre>
<p>Using a <strong><code>range</code></strong> also allows you set any <em>starting value</em>:</p>
<pre><code>(Pen, Pencil, Eraser) = range(9, 12)
</code></pre>
<p>In addition to the above, if you also require that the items belong to a <em>container</em> of some sort, then embed them in a class:</p>
<pre><code>class Stationary:
(Pen, Pencil, Eraser) = range(0, 3)
</code></pre>
<p>To use the enum item, you would now need to use the container name and the item name:</p>
<pre><code>stype = Stationary.Pen
</code></pre>
<p><strong>Complex enum:</strong></p>
<p>For long lists of enum or more complicated uses of enum, these solutions will not suffice. You could look to the recipe by Will Ware for <em>Simulating Enumerations in Python</em> published in the <em>Python Cookbook</em>. An online version of that is available <a href="http://code.activestate.com/recipes/67107/" rel="nofollow">here</a>.</p>
<p><strong>More info:</strong></p>
<p><a href="http://www.python.org/dev/peps/pep-0354/" rel="nofollow"><em>PEP 354: Enumerations in Python</em></a> has the interesting details of a proposal for enum in Python and why it was rejected.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/1587932#15879320Answer by Natim for What's the best way to implement an 'enum' in Python?Natim2009-10-19T10:21:39Z2009-10-19T10:21:39Z<p>What about :</p>
<pre><code>TYPE = {'EAN13': u'EAN-13',
'CODE39': u'Code 39',
'CODE128': u'Code 128',
'i25': u'Interleaved 2 of 5',}
>>> TYPE.items()
[('EAN13', u'EAN-13'), ('i25', u'Interleaved 2 of 5'), ('CODE39', u'Code 39'), ('CODE128', u'Code 128')]
>>> TYPE.keys()
['EAN13', 'i25', 'CODE39', 'CODE128']
>>> TYPE.values()
[u'EAN-13', u'Interleaved 2 of 5', u'Code 39', u'Code 128']
</code></pre>
<p>I used that for Django model choices, it looks very pythonic.
It is not really a Enum, but do the job.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/1695250#16952502Answer by Alec Thomas for What's the best way to implement an 'enum' in Python?Alec Thomas2009-11-08T03:15:28Z2009-11-08T03:15:28Z<p>Here's yet another way:</p>
<pre><code>import new
def enum(**enums):
return new.classobj('Enum', (), enums)
</code></pre>
<p>Used like so:</p>
<pre><code>>>> Numbers = enum(ONE=1, TWO=2, THREE='three')
>>> Numbers.ONE
1
>>> Numbers.TWO
2
>>> Numbers.THREE
'three'
</code></pre>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/1751697#17516970Answer by Paul McGuire for What's the best way to implement an 'enum' in Python?Paul McGuire2009-11-17T20:54:34Z2009-11-17T20:54:34Z<p>I had need of some symbolic constants in pyparsing to represent left and right associativity of binary operators. I used class constants like this:</p>
<pre><code># an internal class, not intended to be seen by client code
class _Constants(object):
pass
# an enumeration of constants for operator associativity
opAssoc = _Constants()
opAssoc.LEFT = object()
opAssoc.RIGHT = object()
</code></pre>
<p>Now when client code wants to use these constants, they can import the entire enum using:</p>
<pre><code>import opAssoc from pyparsing
</code></pre>
<p>The enumerations are unique, they can be tested with 'is' instead of '==', they don't take up a big footprint in my code for a minor concept, and they are easily imported into the client code. They don't support any fancy str() behavior, but so far that is in the YAGNI category.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/1753328#17533281Answer by steveha for What's the best way to implement an 'enum' in Python?steveha2009-11-18T02:49:33Z2009-11-18T02:49:33Z<p>Here is another one. It seems somewhat similar to the general approach used by @Cipher. The author called it yapenum, "yet another Python enum".</p>
<p><a href="http://blog.bstpierre.org/yet-another-python-enum-module" rel="nofollow">http://blog.bstpierre.org/yet-another-python-enum-module</a></p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/1753340#17533400Answer by steveha for What's the best way to implement an 'enum' in Python?steveha2009-11-18T02:51:40Z2009-11-18T02:51:40Z<p>This is the best one I have seen: "First Class Enums in Python"</p>
<p><a href="http://code.activestate.com/recipes/413486/" rel="nofollow">http://code.activestate.com/recipes/413486/</a></p>
<p>It gives you a class, and the class contains all the enums. The enums can be compared to each other, but don't have any particular value; you can't use them as an integer value. (I resisted this at first because I am used to C enums, which are integer values. But if you can't use it as an integer, you can't use it as an integer by mistake so overall I think it is a win.) Each enum is a unique value. You can print enums, you can iterate over them, you can test that an enum value is "in" the enum. It's pretty complete and slick.</p>