vote up 38 vote down star
20

I'm mainly a C# developer, but I'm currently working on a project in Python.

What's the best way to implement the equivalent of an enum in Python?

flag

50% accept rate

15 Answers

vote up 26 vote down check

Python doesn't have an equivalent but you can implement your own.

Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ...

class Animal:
    DOG=1
    CAT=2

x = Animal.DOG
link|flag
What's the point of defining numerical values (1 and 2)? They seem useless, and that's why I prefer zacherates' solution. – bortzmeyer Sep 26 '08 at 19:16
It is clear from the example that constants are being defined. There is an issue with type safety, however, which may cause problems. – strager Feb 3 at 0:54
You should have first created an instance of Animal class.. X = Animal() z = X.DOG – neo Mar 5 at 15:38
No, it's a class variable. – gs Mar 5 at 15:41
2  
Python is dynamic by default. There's no valid reason to enforce compile-time safety in a language like Python, especially when there is none. And another thing ... a good pattern is only good in the context in which it was created. A good pattern can also be superseded or completely useless, depending on the tools you're using. – Alexandru Nedelcu Jul 21 at 8:21
show 2 more comments
vote up 29 vote down

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:

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
link|flag
vote up 15 vote down

Python doesn't have a built-in equivalent to enum, and other answers have ideas for implementing your own (you may also be interested in the over the top version in the Python cookbook).

However, in situations where an enum would be called for in C, I usually end up just using simple strings: 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.

ANIMALS = ['cat', 'dog', 'python']

def take_for_a_walk(animal):
    assert animal in ANIMALS
    ...

(One disadvantage compared to using a class is that you lose the benefit of autocomplete)

link|flag
I prefer this solution. I like to use built-in types where possible. – Seun Osewa Feb 3 at 18:01
That version isn't really over the top. It just has a lot of supplied testing code – Casebash Oct 25 at 5:10
Actually, the "correct" version is in the comments and is much more complex - the main version has a minor bug. – Casebash Oct 25 at 5:24
vote up 14 vote down

If you need the numeric values, here's the quickest way:

(dog,cat,rabbit) = range(0,3)
link|flag
vote up 10 vote down
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()

Use it like this:

Animal = enum(('DOG', 'CAT'))
Animal.DOG # returns 0
Animal.CAT # returns 1
Animal.DOG = 2 # raises NotImplementedError

if you just want unique symbols and don't care about the values, replace this line:

__metaclass__ = M_add_class_attribs(enumerate(names))

with this:

__metaclass__ = M_add_class_attribs((object(), name) for name in names)
link|flag
vote up 7 vote down

What exactly do you want to use an enum for? Is there a more Pythonic way of doing it?

link|flag
vote up 5 vote down

What I use:

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

How to use:

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

So this gives you integer constants like state.PUBLISHED and the two-tuples to use as choices in Django models.

link|flag
vote up 2 vote down

Hi!

Hmmm... I suppose the closest thing to an enum would be a dictionary, defined either like this:

months = {
    'January': 1,
    'February': 2,
    ...
}

or

months = dict(
    January=1,
    February=2,
    ...
)

Then, you can use the symbolic name for the constants like this:

mymonth = months['January']

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.

Edit: I like Alexandru's answer too!

link|flag
vote up 2 vote down

You can take a look at the traits package. This gives you something like type safety and many other useful features.

But it really depends on what you want to use such an enum for.

link|flag
vote up 1 vote down

davidg recommends using dicts. I'd go one step further and use sets:

months = set('January', 'February', ..., 'December')

Now you can test whether a value matches one of the values in the set like this:

if m in months:

like dF, though, I usually just use string constants in place of enums.

link|flag
vote up 1 vote down

Alexandru's suggestion of using class constants for enums works quite well.

I also like to add a dictionary for each set of constants to lookup a human-readable string representation.

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.

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())
link|flag
vote up 1 vote down

The best solution for you would depend on what you require from your fake enum.

Simple enum:

If you need the enum as only a list of names identifying different items, the solution by Mark Harrison (above) is great:

(Pen, Pencil, Eraser) = range(0, 3)

Using a range also allows you set any starting value:

(Pen, Pencil, Eraser) = range(9, 12)

In addition to the above, if you also require that the items belong to a container of some sort, then embed them in a class:

class Stationary:
    (Pen, Pencil, Eraser) = range(0, 3)

To use the enum item, you would now need to use the container name and the item name:

stype = Stationary.Pen

Complex enum:

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 Simulating Enumerations in Python published in the Python Cookbook. An online version of that is available here.

More info:

PEP 354: Enumerations in Python has the interesting details of a proposal for enum in Python and why it was rejected.

link|flag
I like this solution; short, simple; just like the C enum... – Malkocoglu yesterday
vote up 0 vote down

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

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

take it or leave it, it did what i needed it to do :)

use it like:


class Air(FlagEnum):
    __enumerables__=('None','Oxygen','Nitrogen','Hydrogen')

class Mammals(Enum):
    __enumerables__=('Bat','Whale',('Dog','Puppy',1),'Cat')
Bool = enum('Bool','Yes',('No',0))
link|flag
vote up 0 vote down

What about :

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']

I used that for Django model choices, it looks very pythonic. It is not really a Enum, but do the job.

link|flag
vote up 0 vote down

Here's yet another way:

import new

def enum(**enums):
    return new.classobj('Enum', (), enums)

Used like so:

>>> Numbers = enum(ONE=1, TWO=2, THREE='three')
>>> Numbers.ONE
1
>>> Numbers.TWO
2
>>> Numbers.THREE
'three'
link|flag

Your Answer

Get an OpenID
or

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