Howto Enum
Howto Enum
Release 3.11.2
Contents
5 Iteration 6
6 Comparisons 7
9 Pickling 9
10 Functional API 9
11 Derived Enumerations 10
11.1 IntEnum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
11.2 StrEnum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
11.3 IntFlag . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
11.4 Flag . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
11.5 Others . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
14 Enum Cookbook 19
14.1 Omitting values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
14.2 OrderedEnum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
14.3 DuplicateFreeEnum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
1
14.4 Planet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
14.5 TimePeriod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
15 Subclassing EnumType 23
An Enum is a set of symbolic names bound to unique values. They are similar to global variables, but they offer a
more useful repr(), grouping, type-safety, and a few other features.
They are most useful when you have a variable that can take one of a limited selection of values. For example, the
days of the week:
As you can see, creating an Enum is as simple as writing a class that inherits from Enum itself.
Depending on the nature of the enum a member’s value may or may not be important, but either way that value can
be used to get the corresponding member:
>>> Weekday(3)
<Weekday.WEDNESDAY: 3>
As you can see, the repr() of a member shows the enum name, the member name, and the value. The str() of
a member shows only the enum name and member name:
>>> print(Weekday.THURSDAY)
Weekday.THURSDAY
>>> type(Weekday.MONDAY)
<enum 'Weekday'>
>>> isinstance(Weekday.FRIDAY, Weekday)
True
>>> print(Weekday.TUESDAY.name)
TUESDAY
2
Likewise, they have an attribute for their value:
>>> Weekday.WEDNESDAY.value
3
Unlike many languages that treat enumerations solely as name/value pairs, Python Enums can have behavior added.
For example, datetime.date has two methods for returning the weekday: weekday() and isoweekday().
The difference is that one of them counts from 0-6 and the other from 1-7. Rather than keep track of that ourselves
we can add a method to the Weekday enum to extract the day from the date instance and return the matching
enum member:
@classmethod
def from_date(cls, date):
return cls(date.isoweekday())
Of course, if you’re reading this on some other day, you’ll see that day instead.
This Weekday enum is great if our variable only needs one day, but what if we need several? Maybe we’re writing
a function to plot chores during a week, and don’t want to use a list – we could use a different type of Enum:
We’ve changed two things: we’re inherited from Flag, and the values are all powers of 2.
Just like the original Weekday enum above, we can have a single selection:
But Flag also allows us to combine several members into a single variable:
3
>>> weekend = Weekday.SATURDAY | Weekday.SUNDAY
>>> weekend
<Weekday.SATURDAY|SUNDAY: 96>
In cases where the actual values of the members do not matter, you can save yourself some work and use auto()
for the values:
>>> from enum import auto
>>> class Weekday(Flag):
... MONDAY = auto()
... TUESDAY = auto()
... WEDNESDAY = auto()
... THURSDAY = auto()
... FRIDAY = auto()
... SATURDAY = auto()
... SUNDAY = auto()
... WEEKEND = SATURDAY | SUNDAY
Sometimes it’s useful to access members in enumerations programmatically (i.e. situations where Color.RED won’t
do because the exact color is not known at program-writing time). Enum allows such access:
>>> Color(1)
<Color.RED: 1>
>>> Color(3)
<Color.BLUE: 3>
4
If you have an enum member and need its name or value:
>>> member = Color.RED
>>> member.name
'RED'
>>> member.value
1
However, an enum member can have other names associated with it. Given two entries A and B with the same value
(and A defined first), B is an alias for the member A. By-value lookup of the value of A will return the member A.
By-name lookup of A will return the member A. By-name lookup of B will also return the member A:
>>> class Shape(Enum):
... SQUARE = 2
... DIAMOND = 1
... CIRCLE = 3
... ALIAS_FOR_SQUARE = 2
...
>>> Shape.SQUARE
<Shape.SQUARE: 2>
>>> Shape.ALIAS_FOR_SQUARE
<Shape.SQUARE: 2>
>>> Shape(2)
<Shape.SQUARE: 2>
Note: Attempting to create a member with the same name as an already defined attribute (another member, a
method, etc.) or attempting to create an attribute with the same name as a member is not allowed.
By default, enumerations allow multiple names as aliases for the same value. When this behavior isn’t desired, you
can use the unique() decorator:
>>> from enum import Enum, unique
>>> @unique
... class Mistake(Enum):
... ONE = 1
... TWO = 2
... THREE = 3
... FOUR = 3
...
Traceback (most recent call last):
...
ValueError: duplicate values found in <enum 'Mistake'>: FOUR -> THREE
5
4 Using automatic values
5 Iteration
Iterating over the members of an enum does not provide the aliases:
>>> list(Shape)
[<Shape.SQUARE: 2>, <Shape.DIAMOND: 1>, <Shape.CIRCLE: 3>]
>>> list(Weekday)
[<Weekday.MONDAY: 1>, <Weekday.TUESDAY: 2>, <Weekday.WEDNESDAY: 4>, <Weekday.
,→THURSDAY: 8>, <Weekday.FRIDAY: 16>, <Weekday.SATURDAY: 32>, <Weekday.SUNDAY: 64>]
The __members__ attribute can be used for detailed programmatic access to the enumeration members. For
example, finding all the aliases:
>>> [name for name, member in Shape.__members__.items() if member.name != name]
['ALIAS_FOR_SQUARE']
6
Note: Aliases for flags include values with multiple flags set, such as 3, and no flags set, i.e. 0.
6 Comparisons
Ordered comparisons between enumeration values are not supported. Enum members are not integers (but see In-
tEnum below):
Comparisons against non-enumeration values will always compare not equal (again, IntEnum was explicitly designed
to behave differently, see below):
>>> Color.BLUE == 2
False
Most of the examples above use integers for enumeration values. Using integers is short and handy (and provided by
default by the Functional API), but not strictly enforced. In the vast majority of use-cases, one doesn’t care what the
actual value of an enumeration is. But if the value is important, enumerations can have arbitrary values.
Enumerations are Python classes, and can have methods and special methods as usual. If we have this enumeration:
7
(continued from previous page)
... @classmethod
... def favorite_mood(cls):
... # cls here is the enumeration
... return cls.HAPPY
...
Then:
>>> Mood.favorite_mood()
<Mood.HAPPY: 3>
>>> Mood.HAPPY.describe()
('HAPPY', 3)
>>> str(Mood.FUNKY)
'my custom str! 1'
The rules for what is allowed are as follows: names that start and end with a single underscore are reserved by enum
and cannot be used; all other attributes defined within an enumeration will become members of this enumeration,
with the exception of special methods (__str__(), __add__(), etc.), descriptors (methods are also descriptors),
and variable names listed in _ignore_.
Note: if your enumeration defines __new__() and/or __init__() then any value(s) given to the enum member
will be passed into those methods. See Planet for an example.
A new Enum class must have one base enum class, up to one concrete data type, and as many object-based mixin
classes as needed. The order of these base classes is:
Also, subclassing an enumeration is allowed only if the enumeration does not define any members. So this is forbidden:
Allowing subclassing of enums that define members would lead to a violation of some important invariants of types
and instances. On the other hand, it makes sense to allow sharing some common behavior between a group of
enumerations. (See OrderedEnum for an example.)
8
9 Pickling
The usual restrictions for pickling apply: picklable enums must be defined in the top level of a module, since unpickling
requires them to be importable from that module.
Note: With pickle protocol version 4 it is possible to easily pickle enums nested in other classes.
It is possible to modify how enum members are pickled/unpickled by defining __reduce_ex__() in the enumer-
ation class.
10 Functional API
The semantics of this API resemble namedtuple. The first argument of the call to Enum is the name of the
enumeration.
The second argument is the source of enumeration member names. It can be a whitespace-separated string of names,
a sequence of names, a sequence of 2-tuples with key/value pairs, or a mapping (e.g. dictionary) of names to values.
The last two options enable assigning arbitrary values to enumerations; the others auto-assign increasing integers
starting with 1 (use the start parameter to specify a different starting value). A new class derived from Enum is
returned. In other words, the above assignment to Animal is equivalent to:
The reason for defaulting to 1 as the starting number and not 0 is that 0 is False in a boolean sense, but by default
enum members all evaluate to True.
Pickling enums created with the functional API can be tricky as frame stack implementation details are used to try and
figure out which module the enumeration is being created in (e.g. it will fail if you use a utility function in a separate
module, and also may not work on IronPython or Jython). The solution is to specify the module name explicitly as
follows:
9
Warning: If module is not supplied, and Enum cannot determine what it is, the new Enum members will not
be unpicklable; to keep errors closer to the source, pickling will be disabled.
The new pickle protocol 4 also, in some circumstances, relies on __qualname__ being set to the location where
pickle will be able to find the class. For example, if the class was made available in class SomeData in the global
scope:
Enum(
value='NewEnumName',
names=<...>,
*,
module='...',
qualname='...',
type=<mixed-in class>,
start=1,
)
value What the new enum class will record as its name.
names The enum members. This can be a whitespace- or comma-separated string (values will start at
1 unless otherwise specified):
or an iterator of names:
or a mapping:
11 Derived Enumerations
11.1 IntEnum
The first variation of Enum that is provided is also a subclass of int. Members of an IntEnum can be compared
to integers; by extension, integer enumerations of different types can also be compared to each other:
10
>>> from enum import IntEnum
>>> class Shape(IntEnum):
... CIRCLE = 1
... SQUARE = 2
...
>>> class Request(IntEnum):
... POST = 1
... GET = 2
...
>>> Shape == 1
False
>>> Shape.CIRCLE == 1
True
>>> Shape.CIRCLE == Request.POST
True
>>> int(Shape.CIRCLE)
1
>>> ['a', 'b', 'c'][Shape.CIRCLE]
'b'
>>> [i for i in range(Shape.SQUARE)]
[0, 1]
11.2 StrEnum
The second variation of Enum that is provided is also a subclass of str. Members of a StrEnum can be compared
to strings; by extension, string enumerations of different types can also be compared to each other.
New in version 3.11.
11.3 IntFlag
The next variation of Enum provided, IntFlag, is also based on int. The difference being IntFlag members
can be combined using the bitwise operators (&, |, ^, ~) and the result is still an IntFlag member, if possible. Like
IntEnum, IntFlag members are also integers and can be used wherever an int is used.
Note: Any operation on an IntFlag member besides the bit-wise operations will lose the IntFlag membership.
Bit-wise operations that result in invalid IntFlag values will lose the IntFlag membership. See
FlagBoundary for details.
11
Sample IntFlag class:
Note: Named combinations are considered aliases. Aliases do not show up during iteration, but can be returned
from by-value lookups.
Because IntFlag members are also subclasses of int they can be combined with them (but may lose IntFlag
membership:
>>> Perm.X | 4
<Perm.R|X: 5>
>>> Perm.X | 8
9
Note: The negation operator, ~, always returns an IntFlag member with a positive value:
12
>>> list(RW)
[<Perm.R: 4>, <Perm.W: 2>]
11.4 Flag
The last variation is Flag. Like IntFlag, Flag members can be combined using the bitwise operators (&, |, ^,
~). Unlike IntFlag, they cannot be combined with, nor compared against, any other Flag enumeration, nor int.
While it is possible to specify the values directly it is recommended to use auto as the value and let Flag select an
appropriate value.
New in version 3.6.
Like IntFlag, if a combination of Flag members results in no flags being set, the boolean evaluation is False:
Individual flags should have values that are powers of two (1, 2, 4, 8, …), while combinations of flags will not:
Giving a name to the “no flags set” condition does not change its boolean value:
Note: For the majority of new code, Enum and Flag are strongly recommended, since IntEnum and IntFlag
break some semantic promises of an enumeration (by being comparable to integers, and thus by transitivity to other
13
unrelated enumerations). IntEnum and IntFlag should be used only in cases where Enum and Flag will not
do; for example, when integer constants are replaced with enumerations, or for interoperability with other systems.
11.5 Others
While IntEnum is part of the enum module, it would be very simple to implement independently:
This demonstrates how similar derived enumerations can be defined; for example a FloatEnum that mixes in float
instead of int.
Some rules:
1. When subclassing Enum, mix-in types must appear before Enum itself in the sequence of bases, as in the
IntEnum example above.
2. Mix-in types must be subclassable. For example, bool and range are not subclassable and will throw an
error during Enum creation if used as the mix-in type.
3. While Enum can have members of any type, once you mix in an additional type, all the members must have
values of that type, e.g. int above. This restriction does not apply to mix-ins which only add methods and
don’t specify another type.
4. When another data type is mixed in, the value attribute is not the same as the enum member itself, although
it is equivalent and will compare equal.
5. %-style formatting: %s and %r call the Enum class’s __str__() and __repr__() respectively; other
codes (such as %i or %h for IntEnum) treat the enum member as its mixed-in type.
6. Formatted string literals, str.format(), and format() will use the enum’s __str__() method.
Note: Because IntEnum, IntFlag, and StrEnum are designed to be drop-in replacements for existing constants,
their __str__() method has been reset to their data types __str__() method.
__new__() must be used whenever you want to customize the actual value of the Enum member. Any other
modifications may go in either __new__() or __init__(), with __init__() being preferred.
For example, if you want to pass several items to the constructor, but only want one of them to be the value:
14
(continued from previous page)
>>> print(Coordinate['PY'])
Coordinate.PY
>>> print(Coordinate(3))
Coordinate.VY
__members__ is a read-only ordered mapping of member_name:member items. It is only available on the class.
__new__(), if specified, must create and return the enum members; it is also a very good idea to set the member’s
_value_ appropriately. Once all the members are created it is no longer used.
Note: For standard Enum classes the next value chosen is the last value seen incremented by one.
For Flag classes the next value chosen will be the next highest power-of-two, regardless of the last value seen.
Note: In Python 2 code the _order_ attribute is necessary as definition order is lost before it can be recorded.
15
_Private__names
Private names are not converted to enum members, but remain normal attributes.
Changed in version 3.11.
Enum members are instances of their enum class, and are normally accessed as EnumClass.member. In Python
versions 3.5 to 3.10 you could access members from other members – this practice was discouraged, and in 3.11
Enum returns to not allowing it:
When subclassing other data types, such as int or str, with an Enum, all values after the = are passed to that data
type’s constructor. For example:
Enum classes that are mixed with non-Enum types (such as int, str, etc.) are evaluated according to the mixed-in
type’s rules; otherwise, all members evaluate as True. To make your own enum’s boolean evaluation depend on the
member’s value add the following to your class:
def __bool__(self):
return bool(self.value)
16
Enum classes with methods
If you give your enum subclass extra methods, like the Planet class below, those methods will show up in a dir()
of the member, but not of the class:
>>> dir(Planet)
['EARTH', 'JUPITER', 'MARS', 'MERCURY', 'NEPTUNE', 'SATURN', 'URANUS', 'VENUS', '__
,→class__', '__doc__', '__members__', '__module__']
>>> dir(Planet.EARTH)
['__class__', '__doc__', '__module__', 'mass', 'name', 'radius', 'surface_gravity',
,→ 'value']
Iterating over a combination of Flag members will only return the members that are comprised of a single bit:
>>> list(Color.WHITE)
[<Color.RED: 1>, <Color.GREEN: 2>, <Color.BLUE: 4>]
• negating a flag or flag set returns a new flag/flag set with the corresponding positive integer value:
>>> Color.BLUE
<Color.BLUE: 4>
>>> ~Color.BLUE
<Color.RED|GREEN: 3>
17
• names of pseudo-flags are constructed from their members’ names:
>>> Color(0)
<Color.BLACK: 0>
otherwise, only if all bits of one flag are in the other flag will True be returned:
There is a new boundary mechanism that controls how out-of-range / invalid bits are handled: STRICT, CONFORM,
EJECT, and KEEP:
• STRICT –> raises an exception when presented with invalid values
• CONFORM –> discards any invalid bits
• EJECT –> lose Flag status and become a normal int with the given value
• KEEP –> keep the extra bits
– keeps Flag status and extra bits
– extra bits do not show up in iteration
– extra bits do show up in repr() and str()
The default for Flag is STRICT, the default for IntFlag is EJECT, and the default for _convert_ is KEEP (see
ssl.Options for an example of when KEEP is needed).
Enums have a custom metaclass that affects many aspects of both derived Enum classes and their instances (members).
18
13.1 Enum Classes
The EnumType metaclass is responsible for providing the __contains__(), __dir__(), __iter__() and
other methods that allow one to do things with an Enum class that fail on a typical class, such as list(Color)
or some_enum_var in Color. EnumType is responsible for ensuring that various other methods on the final
Enum class are correct (such as __new__(), __getnewargs__(), __str__() and __repr__()).
Flags have an expanded view of aliasing: to be canonical, the value of a flag needs to be a power-of-two value, and
not a duplicate name. So, in addition to the Enum definition of alias, a flag with no value (a.k.a. 0) or with more than
one power-of-two value (e.g. 3) is considered an alias.
The most interesting thing about enum members is that they are singletons. EnumType creates them all while it
is creating the enum class itself, and then puts a custom __new__() in place to ensure that no new ones are ever
instantiated by returning only the existing member instances.
Flag members can be iterated over just like the Flag class, and only the canonical members will be returned. For
example:
>>> list(Color)
[<Color.RED: 1>, <Color.GREEN: 2>, <Color.BLUE: 4>]
>>> ~Color.RED
<Color.GREEN|BLUE: 6>
Flag members have a length corresponding to the number of power-of-two values they contain. For example:
>>> len(Color.PURPLE)
2
14 Enum Cookbook
While Enum, IntEnum, StrEnum, Flag, and IntFlag are expected to cover the majority of use-cases, they
cannot cover them all. Here are recipes for some different types of enumerations that can be used directly, or as
examples for creating one’s own.
19
14.1 Omitting values
In many use-cases, one doesn’t care what the actual value of an enumeration is. There are several ways to define this
type of simple enumeration:
• use instances of auto for the value
• use instances of object as the value
• use a descriptive string as the value
• use a tuple as the value and a custom __new__() to replace the tuple with an int value
Using any of these methods signifies to the user that these values are not important, and also enables one to add,
remove, or reorder members without having to renumber the remaining members.
Using auto
Using object
This is also a good example of why you might want to write your own __repr__():
20
Using a descriptive string
Then when you inherit from AutoNumber you can write your own __init__ to handle any extra arguments:
Note: The __new__() method, if defined, is used during creation of the Enum members; it is then replaced by
Enum’s __new__() which is used after class creation for lookup of existing members.
21
14.2 OrderedEnum
An ordered enumeration that is not based on IntEnum and so maintains the normal Enum invariants (such as not
being comparable to other enumerations):
14.3 DuplicateFreeEnum
Note: This is a useful example for subclassing Enum to add or change other behaviors as well as disallowing aliases.
If the only desired change is disallowing aliases, the unique() decorator can be used instead.
22
14.4 Planet
If __new__() or __init__() is defined, the value of the enum member will be passed to those methods:
14.5 TimePeriod
15 Subclassing EnumType
While most enum needs can be met by customizing Enum subclasses, either with class decorators or custom functions,
EnumType can be subclassed to provide a different Enum experience.
23