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?
feedback
|
|
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 ...
(This PEP has been rejected, as it says on the page linked.) | |||||||||||||||||||||
feedback
|
|
Here's yet another way:
Used like so:
You can also easily support automatic enumeration with something like this:
Used like so:
| |||||||||||||
feedback
|
|
Here is what I use....
Here is its Implementation...
| |||||||||||||||||
feedback
|
|
If you need the numeric values, here's the quickest way:
| |||||||||
feedback
|
|
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:
A recent thread on python-dev pointed out there are a couple of enum libraries in the wild, including:
| |||||||||||||||||||||
feedback
|
|
Python doesn't have a built-in equivalent to However, in situations where an
(One disadvantage compared to using a class is that you lose the benefit of autocomplete) | |||||
feedback
|
|
The best solution for you would depend on what you require from your fake Simple enum: If you need the
Using a
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:
To use the enum item, you would now need to use the container name and the item name:
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. | ||||
|
feedback
|
Use it like this:
if you just want unique symbols and don't care about the values, replace this line:
with this:
| |||||
feedback
|
|
So, I agree. Let's not enforce type safety in python, but I would like to protect myself from silly mistakes. So what do we think about this?
Keeps me from value-collision in defining my enums.
[edit] Realized later there's another handy advantage.. really fast reverse lookups:
| |||||||||
feedback
|
|
What exactly do you want to use an enum for? Is there a more Pythonic way of doing it? | |||||
feedback
|
|
What I use:
How to use:
So this gives you integer constants like state.PUBLISHED and the two-tuples to use as choices in Django models. | ||||
|
feedback
|
|
Hmmm... I suppose the closest thing to an enum would be a dictionary, defined either like this:
or
Then, you can use the symbolic name for the constants like this:
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! | ||||
|
feedback
|
|
Another, very simple, implementation of an enum in Python, using
or, alternatively,
Like the method above that subclasses
But has more flexibility as it can have different keys and values. This allows
to act as is expected if you use the version that fills in sequential number values. | ||||
|
feedback
|
|
This is the best one I have seen: "First Class Enums in Python" http://code.activestate.com/recipes/413486/ 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. Edit (cfi): The above link is not Python 3 compatible. Here's my port of enum.py to Python 3:
| ||||
|
feedback
|
|
davidg recommends using dicts. I'd go one step further and use sets:
Now you can test whether a value matches one of the values in the set like this:
like dF, though, I usually just use string constants in place of enums. | ||||
|
feedback
|
|
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.
| ||||
|
feedback
|
|
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
take it or leave it, it did what i needed it to do :) use it like:
| ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
Here is another one. It seems somewhat similar to the general approach used by @Cipher. The author called it yapenum, "yet another Python enum". | ||||
|
feedback
|
|
Considering this same question several years later, the enum package from PyPi provides a robust implementation of enums. An earlier answer mentioned PEP 354; this was rejected but the proposal was implemented http://pypi.python.org/pypi/enum. | ||||
|
feedback
|
|
I had need of some symbolic constants in pyparsing to represent left and right associativity of binary operators. I used class constants like this:
Now when client code wants to use these constants, they can import the entire enum using:
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. | ||||
|
feedback
|
|
I prefer to define enums in Python like so:
It's more bug-proof than using integers since you don't have to worry about ensuring that the integers are unique (e.g. if you said Dog = 1 and Cat = 1 you'd be screwed). It's more bug-proof than using strings since you don't have to worry about typos (e.g. x == "catt" fails silently, but x == Animal.Catt is a runtime exception). | ||||
|
feedback
|
|
What about :
I used that for Django model choices, it looks very pythonic. It is not really a Enum, but do the job. | ||||
|
feedback
|
|
Following the Java like enum implementation proposed by Aaron Maenpaa, i came out with this, the idea was to make it generic and parseable.
| ||||
|
feedback
|
|
Why must enumerations be ints? Unfortunately, I can't think of any good looking construct to produce this without chaning the Python language, so I'll use strings:
Then again maybe it's even better now that we can naturally test against strings, for the sake of config files or other remote input. Example:
| ||||
|
feedback
|
| ||||
|
feedback
|
|
I like the java enum, that's how I do it in python:
Sample use:
all class variables are defined as a tuple, just like the constructor. so far, you can't use named arguments. | ||||
|
feedback
|
|
I needed the possibility of having the enum values be floats (not just integers) for use in defining API's where the enum classes are part of the API. My requirements (and implementation) are in this blog post: http://franktheblue.blogspot.com/2011/05/enums-in-python-more-flexible-and.html | ||||
|
feedback
|
|
Here is a variant on Alec Thomas's solution:
| ||||
|
feedback
|
|
This solution is a simple way of getting a class for the enumeration defined as a list (no more annoying integer assignments): enumeration.py:
example.py:
| ||||
|
feedback
|